]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/irc-login.c
- Flags von connecteten Servern werden nun gespeichert.
[ngircd-alex.git] / src / ngircd / irc-login.c
index 73fa034d3c32a714acc3d3a19ab74485a1bcba75..594ddcc303d9c76bdbda8b737fbce76d85acc401 100644 (file)
@@ -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-login.c,v 1.14 2002/05/27 13:09:26 alex Exp $
+ * $Id: irc-login.c,v 1.18 2002/09/03 18:55:03 alex Exp $
  *
  * irc-login.c: Anmeldung und Abmeldung im IRC
  */
@@ -65,13 +65,52 @@ IRC_PASS( CLIENT *Client, REQUEST *Req )
        }
        else if((( Client_Type( Client ) == CLIENT_UNKNOWN ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER )) && (( Req->argc == 3 ) || ( Req->argc == 4 )))
        {
+               CHAR *impl, *serverver, *flags, *ptr;
+               INT protohigh, protolow;
+
                /* noch nicht registrierte Server-Verbindung */
                Log( LOG_DEBUG, "Connection %d: got PASS command (new server link) ...", Client_Conn( Client ));
 
                /* Passwort speichern */
                Client_SetPassword( Client, Req->argv[0] );
 
+               /* Protokollversion ueberpruefen */
+               if( strlen( Req->argv[1] ) > 4 ) Req->argv[1][4] = '\0';
+               if( strlen( Req->argv[1] ) != 4 ) protohigh = protolow = 0;
+               else
+               {
+                       protolow = atoi( &Req->argv[1][2] );
+                       Req->argv[1][2] = '\0';
+                       protohigh = atoi( Req->argv[1] );
+               }
+
+               /* Implementation, Version und ngIRCd-Flags */
+               impl = Req->argv[2];
+               ptr = strchr( impl, '|' );
+               if( ptr ) *ptr = '\0';
+
+               if( strcmp( impl, PACKAGE ) == 0 )
+               {
+                       /* auf der anderen Seite laeuft auch ein ngIRCd */
+                       serverver = ptr + 1;
+                       flags = strchr( serverver, ':' );
+                       if( flags )
+                       {
+                               *flags = '\0';
+                               flags++;
+                       }
+                       else flags = "";
+                       Log( LOG_INFO, "Connection %d: Peer announces itself as %s-%s (flags: \"%s\") using protocol version %d.%d.", Client_Conn( Client ), impl, serverver, flags, protohigh, protolow );
+               }
+               else
+               {
+                       serverver = flags = "";
+                       Log( LOG_INFO, "Connection %d: Peer announces itself as server of type \"%s\" usinf protocol version %d.%d.", Client_Conn( Client ), impl, protohigh, protolow );
+               }
+
                Client_SetType( Client, CLIENT_GOTPASSSERVER );
+               Client_SetFlags( Client, flags );
+
                return CONNECTED;
        }
        else if(( Client_Type( Client ) == CLIENT_UNKNOWN  ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER ))
@@ -391,9 +430,9 @@ Hello_User( CLIENT *Client )
        IRC_WriteStrServers( NULL, "NICK %s 1 %s %s 1 +%s :%s", Client_ID( Client ), Client_User( Client ), Client_Hostname( Client ), Client_Modes( Client ), Client_Info( Client ));
 
        if( ! IRC_WriteStrClient( Client, RPL_WELCOME_MSG, Client_ID( Client ), Client_Mask( Client ))) return FALSE;
-       if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )))) return FALSE;
+       if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), VERSION, TARGET_CPU, TARGET_CPU, TARGET_OS )) return FALSE;
        if( ! IRC_WriteStrClient( Client, RPL_CREATED_MSG, Client_ID( Client ), NGIRCd_StartStr )) return FALSE;
-       if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )))) return FALSE;
+       if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), VERSION, USERMODES, CHANMODES )) return FALSE;
 
        Client_SetType( Client, CLIENT_USER );