X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fconn.h;h=02b744ef5f0fad386ac462144b03e58cf2409b94;hp=165c48969f13d230033fce695c10a7086f410fc1;hb=7c91951d74f0590c4135fa1d2517c739b14771f6;hpb=933e62fb7d72c9ab386de7571ea45c125c54cbe8 diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index 165c4896..02b744ef 100644 --- a/src/ngircd/conn.h +++ b/src/ngircd/conn.h @@ -9,11 +9,20 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: conn.h,v 1.3 2001/12/14 08:15:45 alex Exp $ + * $Id: conn.h,v 1.6 2001/12/25 22:03:47 alex Exp $ * * conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header) * * $Log: conn.h,v $ + * Revision 1.6 2001/12/25 22:03:47 alex + * - Conn_Close() eingefuehrt: war die lokale Funktion Close_Connection(). + * + * Revision 1.5 2001/12/23 21:57:48 alex + * - Conn_WriteStr() unterstuetzt nun variable Parameter. + * + * Revision 1.4 2001/12/15 00:08:27 alex + * - neue globale Funktionen: Conn_Write() und Conn_WriteStr(). + * * Revision 1.3 2001/12/14 08:15:45 alex * - CONN_ID wird definiert. * @@ -22,7 +31,6 @@ * * Revision 1.1 2001/12/12 17:18:38 alex * - Modul zur Verwaltung aller Netzwerk-Verbindungen begonnen. - * */ @@ -40,6 +48,11 @@ GLOBAL BOOLEAN Conn_New_Listener( CONST INT Port ); GLOBAL VOID Conn_Handler( INT Timeout ); +GLOBAL BOOLEAN Conn_Write( CONN_ID Idx, CHAR *Data, INT Len ); +GLOBAL BOOLEAN Conn_WriteStr( CONN_ID Idx, CHAR *Format, ... ); + +GLOBAL VOID Conn_Close( CONN_ID Idx, CHAR *Msg ); + #endif