diff options
| author | Florian Westphal <fw@strlen.de> | 2005-08-27 18:39:56 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2005-08-27 18:39:56 +0000 |
| commit | 6434d0b23e5d0d9a34076511869a4ab65d5def19 (patch) | |
| tree | c8dd4563251d2c16cc6f814b1305340b2df10f27 | |
| parent | d5c5d2a37fe730f82bd71da7a9e357f569cac406 (diff) | |
| download | ngircd-6434d0b23e5d0d9a34076511869a4ab65d5def19.tar.gz ngircd-6434d0b23e5d0d9a34076511869a4ab65d5def19.zip | |
return PING argument in PONG reply if STRICT_RFC is not defined.
| -rw-r--r-- | src/ngircd/irc-login.c | 38 |
1 files changed, 24 insertions, 14 deletions
diff --git a/src/ngircd/irc-login.c b/src/ngircd/irc-login.c index c20621d6..39caa49f 100644 --- a/src/ngircd/irc-login.c +++ b/src/ngircd/irc-login.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc-login.c,v 1.46 2005/07/31 20:13:08 alex Exp $"; +static char UNUSED id[] = "$Id: irc-login.c,v 1.47 2005/08/27 18:39:56 fw Exp $"; #include "imp.h" #include <assert.h> @@ -434,29 +434,39 @@ IRC_PING( CLIENT *Client, REQUEST *Req ) assert( Client != NULL ); assert( Req != NULL ); - /* Falsche Anzahl Parameter? */ + /* wrong number of arguments? */ if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client )); #ifdef STRICT_RFC if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command ); #endif - if( Req->argc > 1 ) - { - /* es wurde ein Ziel-Client angegeben */ + if( Req->argc > 1 ) { + /* a target client was specified */ target = Client_Search( Req->argv[1] ); - if(( ! target ) || ( Client_Type( target ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] ); - if( target != Client_ThisServer( )) - { - /* ok, forwarden */ - if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix ); - else from = Client; - if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix ); - return IRC_WriteStrClientPrefix( target, from, "PING %s :%s", Client_ID( from ), Req->argv[1] ); + if(( ! target ) || ( Client_Type( target ) != CLIENT_SERVER )) + return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] ); + if( target != Client_ThisServer( )) { + /* ok, forward */ + if( Client_Type( Client ) == CLIENT_SERVER ) + from = Client_Search( Req->prefix ); + else + from = Client; + if (!from) + return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, + Client_ID( Client ), Req->prefix ); + return IRC_WriteStrClientPrefix(target, from, + "PING %s :%s", Client_ID( from ), Req->argv[1] ); } } Log( LOG_DEBUG, "Connection %d: got PING, sending PONG ...", Client_Conn( Client )); - return IRC_WriteStrClient( Client, "PONG %s :%s", Client_ID( Client_ThisServer( )), Client_ID( Client )); +#ifdef STRICT_RFC + return IRC_WriteStrClient( Client, "PONG %s :%s", Client_ID( Client_ThisServer( )), + Client_ID( Client )); +#else + /* some clients depend on argument being returned in PONG reply (not mentioned in any RFC, though) */ + return IRC_WriteStrClient( Client, "PONG %s :%s", Client_ID( Client_ThisServer( )), Req->argv[0]); +#endif } /* IRC_PING */ |