commit - e8543915e4db6bbc60f7db6926b23457a3a0b188
commit + 7c91951d74f0590c4135fa1d2517c739b14771f6
blob - e5eab63f330bc0a6c17e2c522327149da6b3cd2c
blob + 6182857cfeffdfd3a321af6d6ff3759c860c3137
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: conn.c,v 1.9 2001/12/24 01:32:33 alex Exp $
+ * $Id: conn.c,v 1.10 2001/12/25 22:03:47 alex Exp $
*
* connect.h: Verwaltung aller Netz-Verbindungen ("connections")
*
* $Log: conn.c,v $
+ * Revision 1.10 2001/12/25 22:03:47 alex
+ * - Conn_Close() eingefuehrt: war die lokale Funktion Close_Connection().
+ *
* Revision 1.9 2001/12/24 01:32:33 alex
* - in Conn_WriteStr() wurde das CR+LF nicht angehaengt!
* - Fehler-Ausgaben vereinheitlicht.
LOCAL BOOLEAN Handle_Write( CONN_ID Idx );
LOCAL VOID New_Connection( INT Sock );
LOCAL CONN_ID Socket2Index( INT Sock );
-LOCAL VOID Close_Connection( CONN_ID Idx, CHAR *Msg );
LOCAL VOID Read_Request( CONN_ID Idx );
LOCAL BOOLEAN Try_Write( CONN_ID Idx );
{
if( My_Connections[idx].sock == i ) break;
}
- if( idx < MAX_CONNECTIONS ) Close_Connection( idx, "Server going down ..." );
+ if( idx < MAX_CONNECTIONS ) Conn_Close( idx, "Server going down ..." );
else if( FD_ISSET( i, &My_Listener ))
{
close( i );
if( vsnprintf( buffer, MAX_CMDLEN - 2, Format, ap ) == MAX_CMDLEN - 2 )
{
Log( LOG_ALERT, "String too long to send (connection %d)!", Idx );
- Close_Connection( Idx, "Server error: String too long to send!" );
+ Conn_Close( Idx, "Server error: String too long to send!" );
return FALSE;
}
-#ifdef DEBUG
+#ifdef SNIFFER
Log( LOG_DEBUG, " -> connection %d: '%s'.", Idx, buffer );
#endif
-
+
strcat( buffer, "\r\n" );
ok = Conn_Write( Idx, buffer, strlen( buffer ));
{
/* der Puffer ist dummerweise voll ... */
Log( LOG_NOTICE, "Write buffer overflow (connection %d)!", Idx );
- Close_Connection( Idx, NULL );
+ Conn_Close( Idx, NULL );
return FALSE;
}
return TRUE;
} /* Conn_Write */
+
+
+GLOBAL VOID Conn_Close( CONN_ID Idx, CHAR *Msg )
+{
+ /* Verbindung schliessen */
+
+ assert( Idx >= 0 );
+ assert( My_Connections[Idx].sock >= 0 );
+
+ if( Msg ) Conn_WriteStr( Idx, "ERROR :%s", Msg );
+
+ if( close( My_Connections[Idx].sock ) != 0 )
+ {
+ Log( LOG_ERR, "Error closing connection %d with %s:%d - %s!", Idx, inet_ntoa( My_Connections[Idx].addr.sin_addr ), ntohs( My_Connections[Idx].addr.sin_port), strerror( errno ));
+ return;
+ }
+ else
+ {
+ Log( LOG_NOTICE, "Connection %d with %s:%d closed.", Idx, inet_ntoa( My_Connections[Idx].addr.sin_addr ), ntohs( My_Connections[Idx].addr.sin_port ));
+ }
+
+ Client_Destroy( Client_GetFromConn( Idx ));
+
+ FD_CLR( My_Connections[Idx].sock, &My_Sockets );
+ My_Connections[Idx].sock = NONE;
+} /* Conn_Close */
LOCAL BOOLEAN Try_Write( CONN_ID Idx )
if( errno != EINTR )
{
Log( LOG_ALERT, "select(): %s!", strerror( errno ));
- Close_Connection( Idx, NULL );
+ Conn_Close( Idx, NULL );
return FALSE;
}
}
{
/* Oops, ein Fehler! */
Log( LOG_ALERT, "Write error (buffer) on connection %d: %s!", Idx, strerror( errno ));
- Close_Connection( Idx, NULL );
+ Conn_Close( Idx, NULL );
return FALSE;
}
} /* Socket2Index */
-LOCAL VOID Close_Connection( CONN_ID Idx, CHAR *Msg )
-{
- /* Verbindung schlie§en */
-
- assert( Idx >= 0 );
- assert( My_Connections[Idx].sock >= 0 );
-
- if( Msg ) Conn_WriteStr( Idx, "ERROR :%s", Msg );
-
- if( close( My_Connections[Idx].sock ) != 0 )
- {
- Log( LOG_ERR, "Error closing connection %d with %s:%d - %s!", Idx, inet_ntoa( My_Connections[Idx].addr.sin_addr ), ntohs( My_Connections[Idx].addr.sin_port), strerror( errno ));
- return;
- }
- else
- {
- Log( LOG_NOTICE, "Connection %d with %s:%d closed.", Idx, inet_ntoa( My_Connections[Idx].addr.sin_addr ), ntohs( My_Connections[Idx].addr.sin_port ));
- }
-
- Client_Destroy( Client_GetFromConn( Idx ));
-
- FD_CLR( My_Connections[Idx].sock, &My_Sockets );
- My_Connections[Idx].sock = NONE;
-} /* Close_Connection */
-
-
LOCAL VOID Read_Request( CONN_ID Idx )
{
/* Daten von Socket einlesen und entsprechend behandeln.
{
/* Socket wurde geschlossen */
Log( LOG_INFO, "%s:%d is closing the connection ...", inet_ntoa( My_Connections[Idx].addr.sin_addr ), ntohs( My_Connections[Idx].addr.sin_port));
- Close_Connection( Idx, NULL );
+ Conn_Close( Idx, NULL );
return;
}
{
/* Fehler beim Lesen */
Log( LOG_ALERT, "Read error on connection %d: %s!", Idx, strerror( errno ));
- Close_Connection( Idx, "Read error!" );
+ Conn_Close( Idx, "Read error!" );
return;
}
* (incl. CR+LF!) werden; vgl. RFC 2812. Wenn soetwas
* empfangen wird, wird der Client disconnectiert. */
Log( LOG_ALERT, "Request too long (connection %d)!", Idx );
- Close_Connection( Idx, "Request too long!" );
+ Conn_Close( Idx, "Request too long!" );
return;
}
blob - fdbf570da83bcec6a81207ca04a3b99f97ada96a
blob + 02b744ef5f0fad386ac462144b03e58cf2409b94
--- src/ngircd/conn.h
+++ src/ngircd/conn.h
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: conn.h,v 1.5 2001/12/23 21:57:48 alex Exp $
+ * $Id: conn.h,v 1.6 2001/12/25 22:03:47 alex Exp $
*
* conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header)
*
* $Log: conn.h,v $
+ * Revision 1.6 2001/12/25 22:03:47 alex
+ * - Conn_Close() eingefuehrt: war die lokale Funktion Close_Connection().
+ *
* Revision 1.5 2001/12/23 21:57:48 alex
* - Conn_WriteStr() unterstuetzt nun variable Parameter.
*
GLOBAL BOOLEAN Conn_Write( CONN_ID Idx, CHAR *Data, INT Len );
GLOBAL BOOLEAN Conn_WriteStr( CONN_ID Idx, CHAR *Format, ... );
+GLOBAL VOID Conn_Close( CONN_ID Idx, CHAR *Msg );
+
#endif