Blame


1 c23199d9 2002-02-27 alex /*
2 c23199d9 2002-02-27 alex * ngIRCd -- The Next Generation IRC Daemon
3 c23199d9 2002-02-27 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 c23199d9 2002-02-27 alex *
5 c23199d9 2002-02-27 alex * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6 c23199d9 2002-02-27 alex * der GNU General Public License (GPL), wie von der Free Software Foundation
7 c23199d9 2002-02-27 alex * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8 c23199d9 2002-02-27 alex * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9 c23199d9 2002-02-27 alex * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10 c23199d9 2002-02-27 alex * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
11 c23199d9 2002-02-27 alex *
12 ca33cbda 2002-03-12 alex * $Id: irc-login.h,v 1.3 2002/03/12 14:37:52 alex Exp $
13 c23199d9 2002-02-27 alex *
14 c23199d9 2002-02-27 alex * irc-login.h: Anmeldung und Abmeldung im IRC (Header)
15 c23199d9 2002-02-27 alex */
16 c23199d9 2002-02-27 alex
17 c23199d9 2002-02-27 alex
18 c23199d9 2002-02-27 alex #ifndef __irc_login_h__
19 c23199d9 2002-02-27 alex #define __irc_login_h__
20 c23199d9 2002-02-27 alex
21 c23199d9 2002-02-27 alex #include "parse.h"
22 c23199d9 2002-02-27 alex #include "client.h"
23 c23199d9 2002-02-27 alex
24 c23199d9 2002-02-27 alex
25 c23199d9 2002-02-27 alex GLOBAL BOOLEAN IRC_PASS( CLIENT *Client, REQUEST *Req );
26 c23199d9 2002-02-27 alex GLOBAL BOOLEAN IRC_NICK( CLIENT *Client, REQUEST *Req );
27 c23199d9 2002-02-27 alex GLOBAL BOOLEAN IRC_USER( CLIENT *Client, REQUEST *Req );
28 c23199d9 2002-02-27 alex GLOBAL BOOLEAN IRC_PING( CLIENT *Client, REQUEST *Req );
29 c23199d9 2002-02-27 alex GLOBAL BOOLEAN IRC_PONG( CLIENT *Client, REQUEST *Req );
30 c23199d9 2002-02-27 alex GLOBAL BOOLEAN IRC_QUIT( CLIENT *Client, REQUEST *Req );
31 c23199d9 2002-02-27 alex
32 c23199d9 2002-02-27 alex
33 c23199d9 2002-02-27 alex #endif
34 c23199d9 2002-02-27 alex
35 c23199d9 2002-02-27 alex
36 c23199d9 2002-02-27 alex /* -eof- */