Blame


1 c23199d9 2002-02-27 alex /*
2 c23199d9 2002-02-27 alex * ngIRCd -- The Next Generation IRC Daemon
3 4e56e534 2008-05-05 alex * Copyright (c)2001-2008 Alexander Barton (alex@barton.de)
4 c23199d9 2002-02-27 alex *
5 c7f07523 2002-12-12 alex * This program is free software; you can redistribute it and/or modify
6 c7f07523 2002-12-12 alex * it under the terms of the GNU General Public License as published by
7 c7f07523 2002-12-12 alex * the Free Software Foundation; either version 2 of the License, or
8 c7f07523 2002-12-12 alex * (at your option) any later version.
9 c7f07523 2002-12-12 alex * Please read the file COPYING, README and AUTHORS for more information.
10 c23199d9 2002-02-27 alex *
11 c7f07523 2002-12-12 alex * Login and logout (header)
12 c23199d9 2002-02-27 alex */
13 c23199d9 2002-02-27 alex
14 c23199d9 2002-02-27 alex
15 c23199d9 2002-02-27 alex #ifndef __irc_login_h__
16 c23199d9 2002-02-27 alex #define __irc_login_h__
17 c23199d9 2002-02-27 alex
18 4e56e534 2008-05-05 alex GLOBAL bool IRC_PASS PARAMS((CLIENT *Client, REQUEST *Req));
19 4e56e534 2008-05-05 alex GLOBAL bool IRC_NICK PARAMS((CLIENT *Client, REQUEST *Req));
20 4e56e534 2008-05-05 alex GLOBAL bool IRC_USER PARAMS((CLIENT *Client, REQUEST *Req));
21 4e56e534 2008-05-05 alex GLOBAL bool IRC_SERVICE PARAMS((CLIENT *Client, REQUEST *Req));
22 4e56e534 2008-05-05 alex GLOBAL bool IRC_PING PARAMS((CLIENT *Client, REQUEST *Req));
23 4e56e534 2008-05-05 alex GLOBAL bool IRC_PONG PARAMS((CLIENT *Client, REQUEST *Req));
24 4e56e534 2008-05-05 alex GLOBAL bool IRC_QUIT PARAMS((CLIENT *Client, REQUEST *Req));
25 c23199d9 2002-02-27 alex
26 c23199d9 2002-02-27 alex #endif
27 c23199d9 2002-02-27 alex
28 c23199d9 2002-02-27 alex
29 c23199d9 2002-02-27 alex /* -eof- */