X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Firc.c;h=e8300ff0839e294ebd7508e2a325b07a36571704;hp=8c362ba66aa07c04bfe19b9a92b47a0f08784dfc;hb=f86bbd718d4a439509c290b62722f4aa96c00abb;hpb=283aed75cf7b83bdc30c5b63d5380b767c6664ad diff --git a/src/ngircd/irc.c b/src/ngircd/irc.c index 8c362ba6..e8300ff0 100644 --- a/src/ngircd/irc.c +++ b/src/ngircd/irc.c @@ -9,7 +9,7 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: irc.c,v 1.101 2002/11/24 16:36:03 alex Exp $ + * $Id: irc.c,v 1.102 2002/11/24 18:45:53 alex Exp $ * * irc.c: IRC-Befehle */ @@ -23,6 +23,7 @@ #include #include #include +#include #include "ngircd.h" #include "conn.h" @@ -734,6 +735,44 @@ IRC_ADMIN(CLIENT *Client, REQUEST *Req ) } /* IRC_ADMIN */ +GLOBAL BOOLEAN +IRC_TIME( CLIENT *Client, REQUEST *Req ) +{ + CLIENT *from, *target; + CHAR t_str[64]; + time_t t; + + assert( Client != NULL ); + assert( Req != NULL ); + + if(( Client_Type( Client ) != CLIENT_USER ) && ( Client_Type( Client ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client )); + + /* Falsche Anzahl Parameter? */ + if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command ); + + /* From aus Prefix ermitteln */ + 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 ); + + if( Req->argc == 1 ) + { + /* an anderen Server forwarden */ + target = Client_Search( Req->argv[0] ); + if( ! target ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[0] ); + + if( target != Client_ThisServer( )) + { + /* Ok, anderer Server ist das Ziel: forwarden */ + return IRC_WriteStrClientPrefix( target, from, "TIME %s", Req->argv[0] ); + } + } + + t = time( NULL ); + (VOID)strftime( t_str, 60, "%A %B %d %Y -- %H:%M %z", localtime( &t )); + return IRC_WriteStrClient( from, RPL_TIME_MSG, Client_ID( from ), Client_ID( Client_ThisServer( )), t_str ); +} /* IRC_TIME */ + GLOBAL BOOLEAN IRC_Show_MOTD( CLIENT *Client )