commit - 6d5b606c46d07a851ec4012814f2778462235cca
commit + c6b9f3a13d4676dafbdbbc3ed1d200b486c537c8
blob - bef5b149f9598d3951fbc4180974a667485139da
blob + 70ce5d1bc8e1ec316fd57a690b90cb550fea9ed2
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: conn.c,v 1.90 2002/11/19 12:50:20 alex Exp $
+ * $Id: conn.c,v 1.91 2002/11/20 15:48:41 alex Exp $
*
* connect.h: Verwaltung aller Netz-Verbindungen ("connections")
*/
len = send( My_Connections[Idx].sock, My_Connections[Idx].wbuf, My_Connections[Idx].wdatalen, 0 );
if( len < 0 )
{
+ /* Operation haette Socket "nur" blockiert ... */
+ if( errno == EAGAIN ) return TRUE;
+
/* Oops, ein Fehler! */
Log( LOG_ERR, "Write error on connection %d (socket %d): %s!", Idx, My_Connections[Idx].sock, strerror( errno ));
Conn_Close( Idx, "Write error!", NULL, FALSE );
assert( Sock > NONE );
+ /* Connection auf Listen-Socket annehmen */
new_sock_len = sizeof( new_addr );
new_sock = accept( Sock, (struct sockaddr *)&new_addr, (socklen_t *)&new_sock_len );
if( new_sock < 0 )
Log( LOG_CRIT, "Can't accept connection: %s!", strerror( errno ));
return;
}
+
+ /* Socket initialisieren */
+ Init_Socket( new_sock );
/* Freie Connection-Struktur suchen */
for( idx = 0; idx < Pool_Size; idx++ ) if( My_Connections[idx].sock == NONE ) break;
if( len < 0 )
{
+ /* Operation haette Socket "nur" blockiert ... */
+ if( errno == EAGAIN ) return;
+
/* Fehler beim Lesen */
Log( LOG_ERR, "Read error on connection %d (socket %d): %s!", Idx, My_Connections[Idx].sock, strerror( errno ));
Conn_Close( Idx, "Read error!", "Client closed connection", FALSE );