diff options
| author | Alexander Barton <alex@barton.de> | 2001-12-23 21:57:48 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2001-12-23 21:57:48 +0000 |
| commit | cf2110960058fdd0f58d854a6e878cde6b953dd8 (patch) | |
| tree | e8d4cd2c3f461b1ff8f7e222a3eeab3812da7d05 | |
| parent | 2a13cd224fd6f2cbc9a478c94b4bd4d47fbdd0ad (diff) | |
| download | ngircd-cf2110960058fdd0f58d854a6e878cde6b953dd8.tar.gz ngircd-cf2110960058fdd0f58d854a6e878cde6b953dd8.zip | |
- Conn_WriteStr() unterstuetzt nun variable Parameter.
| -rw-r--r-- | src/ngircd/conn.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index 53df3aff..fdbf570d 100644 --- a/src/ngircd/conn.h +++ b/src/ngircd/conn.h @@ -9,11 +9,14 @@ * 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.4 2001/12/15 00:08:27 alex Exp $ + * $Id: conn.h,v 1.5 2001/12/23 21:57:48 alex Exp $ * * conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header) * * $Log: conn.h,v $ + * 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(). * @@ -43,7 +46,7 @@ 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 *Data ); +GLOBAL BOOLEAN Conn_WriteStr( CONN_ID Idx, CHAR *Format, ... ); #endif |