mirror of
https://github.com/osmarks/ngircd.git
synced 2025-05-06 17:24:08 +00:00
The KILL comand verifies and logs more parameters. [from HEAD]
This commit is contained in:
parent
bbfeaa953b
commit
322d3ebaec
@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
|
|
||||||
ngIRCd 0.7.0
|
ngIRCd 0.7.0
|
||||||
|
- The KILL comand verifies and logs more parameters.
|
||||||
|
|
||||||
ngIRCd 0.7.0-pre2 (2003-04-27)
|
ngIRCd 0.7.0-pre2 (2003-04-27)
|
||||||
- CVS build system fixes (made autogen.sh more portable).
|
- CVS build system fixes (made autogen.sh more portable).
|
||||||
@ -445,4 +446,4 @@ ngIRCd 0.0.1, 31.12.2001
|
|||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
$Id: ChangeLog,v 1.188.2.10 2003/04/27 18:33:26 alex Exp $
|
$Id: ChangeLog,v 1.188.2.11 2003/04/29 12:20:14 alex Exp $
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: irc.c,v 1.120 2003/03/31 15:54:21 alex Exp $";
|
static char UNUSED id[] = "$Id: irc.c,v 1.120.2.1 2003/04/29 12:20:14 alex Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -95,8 +95,30 @@ IRC_KILL( CLIENT *Client, REQUEST *Req )
|
|||||||
if( c )
|
if( c )
|
||||||
{
|
{
|
||||||
/* Yes, there is such a client -- but is it a valid user? */
|
/* Yes, there is such a client -- but is it a valid user? */
|
||||||
if( Client_Type( c ) == CLIENT_SERVER ) IRC_WriteStrClient( Client, ERR_CANTKILLSERVER_MSG, Client_ID( Client ));
|
if( Client_Type( c ) == CLIENT_SERVER )
|
||||||
else if( Client_Type( c ) != CLIENT_USER )IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
|
{
|
||||||
|
if( Client != Client_ThisServer( )) IRC_WriteStrClient( Client, ERR_CANTKILLSERVER_MSG, Client_ID( Client ));
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Oops, I should kill another server!? */
|
||||||
|
Log( LOG_ERR, "Can't KILL server \"%s\"!", Req->argv[0] );
|
||||||
|
conn = Client_Conn( Client_NextHop( c ));
|
||||||
|
assert( conn > NONE );
|
||||||
|
Conn_Close( conn, NULL, "Nick collision for server!?", TRUE );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if( Client_Type( c ) != CLIENT_USER )
|
||||||
|
{
|
||||||
|
if( Client != Client_ThisServer( )) IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Oops, what sould I close?? */
|
||||||
|
Log( LOG_ERR, "Can't KILL \"%s\": invalid client type!", Req->argv[0] );
|
||||||
|
conn = Client_Conn( Client_NextHop( c ));
|
||||||
|
assert( conn > NONE );
|
||||||
|
Conn_Close( conn, NULL, "Collision for invalid client type!?", TRUE );
|
||||||
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Kill user NOW! */
|
/* Kill user NOW! */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user