mirror of
https://github.com/osmarks/ngircd.git
synced 2025-06-22 16:24:08 +00:00
Move IRC_QUIT_HTTP() below IRC_QUIT()
This commit is contained in:
parent
33e8c24806
commit
77cff9e47c
@ -683,6 +683,14 @@ IRC_QUIT( CLIENT *Client, REQUEST *Req )
|
|||||||
} /* IRC_QUIT */
|
} /* IRC_QUIT */
|
||||||
|
|
||||||
|
|
||||||
|
GLOBAL bool
|
||||||
|
IRC_QUIT_HTTP( CLIENT *Client, REQUEST *Req )
|
||||||
|
{
|
||||||
|
Req->argc = 0;
|
||||||
|
return IRC_QUIT(Client, Req);
|
||||||
|
} /* IRC_QUIT_HTTP */
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handler for the IRC "PING" command.
|
* Handler for the IRC "PING" command.
|
||||||
*
|
*
|
||||||
@ -692,14 +700,6 @@ IRC_QUIT( CLIENT *Client, REQUEST *Req )
|
|||||||
* @param Req Request structure with prefix and all parameters.
|
* @param Req Request structure with prefix and all parameters.
|
||||||
* @returns CONNECTED or DISCONNECTED.
|
* @returns CONNECTED or DISCONNECTED.
|
||||||
*/
|
*/
|
||||||
GLOBAL bool
|
|
||||||
IRC_QUIT_HTTP( CLIENT *Client, REQUEST *Req )
|
|
||||||
{
|
|
||||||
Req->argc = 0;
|
|
||||||
return IRC_QUIT(Client, Req);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
GLOBAL bool
|
GLOBAL bool
|
||||||
IRC_PING(CLIENT *Client, REQUEST *Req)
|
IRC_PING(CLIENT *Client, REQUEST *Req)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user