diff options
| author | Alexander Barton <alex@barton.de> | 2002-01-04 17:58:21 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-01-04 17:58:21 +0000 |
| commit | 165d165b63572c0e3a0b23e767aad423eb736761 (patch) | |
| tree | 6854fc18fcb5af55b87cedd2e33fd1b346883739 /src | |
| parent | c48544703dbb3b65d60e0c761c1391c598e0cb3e (diff) | |
| download | ngircd-165d165b63572c0e3a0b23e767aad423eb736761.tar.gz ngircd-165d165b63572c0e3a0b23e767aad423eb736761.zip | |
- IRC_WriteStrXXX()-Funktionen angepasst; neuer Befehl SQUIT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/irc.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/ngircd/irc.h b/src/ngircd/irc.h index 0b20ca3f..7e7c8460 100644 --- a/src/ngircd/irc.h +++ b/src/ngircd/irc.h @@ -9,11 +9,14 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: irc.h,v 1.14 2002/01/03 02:26:07 alex Exp $ + * $Id: irc.h,v 1.15 2002/01/04 17:58:21 alex Exp $ * * irc.h: IRC-Befehle (Header) * * $Log: irc.h,v $ + * Revision 1.15 2002/01/04 17:58:21 alex + * - IRC_WriteStrXXX()-Funktionen angepasst; neuer Befehl SQUIT. + * * Revision 1.14 2002/01/03 02:26:07 alex * - neue Befehle SERVER und NJOIN begonnen. * @@ -71,7 +74,8 @@ GLOBAL VOID IRC_Init( VOID ); GLOBAL VOID IRC_Exit( VOID ); -GLOBAL BOOLEAN IRC_WriteStrClient( CLIENT *Client, CLIENT *Prefix, CHAR *Format, ... ); +GLOBAL BOOLEAN IRC_WriteStrClient( CLIENT *Client, CHAR *Format, ... ); +GLOBAL BOOLEAN IRC_WriteStrClientPrefix( CLIENT *Client, CLIENT *Prefix, CHAR *Format, ... ); GLOBAL BOOLEAN IRC_WriteStrRelated( CLIENT *Client, CHAR *Format, ... ); GLOBAL BOOLEAN IRC_PASS( CLIENT *Client, REQUEST *Req ); @@ -82,6 +86,7 @@ GLOBAL BOOLEAN IRC_NJOIN( CLIENT *Client, REQUEST *Req ); GLOBAL BOOLEAN IRC_PING( CLIENT *Client, REQUEST *Req ); GLOBAL BOOLEAN IRC_PONG( CLIENT *Client, REQUEST *Req ); GLOBAL BOOLEAN IRC_QUIT( CLIENT *Client, REQUEST *Req ); +GLOBAL BOOLEAN IRC_SQUIT( CLIENT *Client, REQUEST *Req ); GLOBAL BOOLEAN IRC_MOTD( CLIENT *Client, REQUEST *Req ); |