X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fsocket_server.cpp;h=e2110bdbe646bd1412f97c4974d81988afedcca8;hp=0eff67623fdb5d9463f40ebd8f2af96db4175b28;hb=20a05ab726b8935e914fe832a08a519a1fba2920;hpb=45a2ebc9695c4d7be6548b7e0f800d117ae56a0b diff --git a/src/socket_server.cpp b/src/socket_server.cpp index 0eff676..e2110bd 100644 --- a/src/socket_server.cpp +++ b/src/socket_server.cpp @@ -152,14 +152,17 @@ void socket_server::new_connection() int newsock = accept (sock,(struct sockaddr *) &clientname,&size); if (newsock < 0) { - if (errno == EAGAIN) + // return on non-fatal errors (list taken from man-page) + if (errno == EAGAIN || errno == EWOULDBLOCK || errno == ECONNABORTED || errno == EINTR || + errno == EMFILE || errno == ENFILE || errno == ENOBUFS || errno == ENOMEM || + errno == EPROTO || errno == EPERM || errno == ETIMEDOUT) { - LOGSTREAM(error,"accept error (EAGAIN): no connection waiting"); + LOGSTREAM(error,"non-fatal accept error: " << strerror(errno)); return; } - /* default: break */ - EXCEPTIONSTREAM(error,t2n_server_error,"error accepting connection: " << strerror(errno)); + /* fatal error: will usually kill or restart the server */ + EXCEPTIONSTREAM(error,t2n_server_error,"fatal error accepting connection: " << strerror(errno)); } FD_SET (newsock, &connection_set); @@ -237,13 +240,23 @@ bool socket_server::fill_buffer(long long usec_timeout,long long* usec_timeout_r /// call fill_buffer() on all connections, called from fill_buffer() bool socket_server::fill_connection_buffers() { - bool data_found; + bool data_found = false; std::map::iterator ie=connections.end(); for(std::map::iterator i=connections.begin(); i != ie; i++) if (!i->second->server_connection::is_closed()) - if (i->second->fill_buffer(0)) - data_found=true; + { + // shutdown all connections which throw exceptions to protect the server + try + { + if (i->second->fill_buffer(0)) + data_found=true; + } + catch (t2n_transfer_error &e) + { i->second->close(); } + catch(...) + { throw; } + } return data_found; }