repo: ngircd action: commit revision: path_from: revision_from: 1256f34736a59be6728a7f9f9ad15168376a17ff: path_to: revision_to:
commit 1256f34736a59be6728a7f9f9ad15168376a17ff Author: Alexander BartonDate: Tue Sep 3 23:54:59 2002 +0000 - neuen Befehl CONNECT begonnen zu implementieren. diff --git a/src/ngircd/irc-oper.c b/src/ngircd/irc-oper.c
--- a/src/ngircd/irc-oper.c
+++ b/src/ngircd/irc-oper.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-oper.c,v 1.7 2002/08/26 23:47:58 alex Exp $
+ * $Id: irc-oper.c,v 1.8 2002/09/03 23:54:59 alex Exp $
*
* irc-oper.c: IRC-Operator-Befehle
*/
@@ -120,4 +120,25 @@ IRC_RESTART( CLIENT *Client, REQUEST *Req )
} /* IRC_RESTART */
+GLOBAL BOOLEAN
+IRC_CONNECT(CLIENT *Client, REQUEST *Req )
+{
+ /* Vorlaeufige Version zu Debug-Zwecken: es wird einfach
+ * der "passive mode" aufgehoben, mehr passiert nicht ... */
+
+ assert( Client != NULL );
+ assert( Req != NULL );
+
+ if( Client_Type( Client ) != CLIENT_USER ) return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
+
+ /* Falsche Anzahl Parameter? */
+ if( Req->argc != 0 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
+ if(( ! Client_HasMode( Client, 'o' )) || ( ! Client_OperByMe( Client ))) return IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
+
+ Log( LOG_NOTICE|LOG_snotice, "Got CONNECT command from \"%s\".", Client_Mask( Client ));
+ NGIRCd_Passive = FALSE;
+ return CONNECTED;
+} /* IRC_CONNECT */
+
+
/* -eof- */
diff --git a/src/ngircd/irc-oper.h b/src/ngircd/irc-oper.h
--- a/src/ngircd/irc-oper.h +++ b/src/ngircd/irc-oper.h @@ -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-oper.h,v 1.5 2002/08/26 23:47:58 alex Exp $ + * $Id: irc-oper.h,v 1.6 2002/09/03 23:54:59 alex Exp $ * * irc-oper.h: IRC-Operator-Befehle (Header) */ @@ -22,6 +22,7 @@ GLOBAL BOOLEAN IRC_OPER PARAMS((CLIENT *Client, REQUEST *Req )); GLOBAL BOOLEAN IRC_DIE PARAMS((CLIENT *Client, REQUEST *Req )); GLOBAL BOOLEAN IRC_RESTART PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL BOOLEAN IRC_CONNECT PARAMS((CLIENT *Client, REQUEST *Req )); #endif
-----END OF PAGE-----