From mboxrd@z Thu Jan 1 00:00:00 1970 From: kupcevic@sourceware.org Date: 14 Oct 2006 17:53:29 -0000 Subject: [Cluster-devel] conga/ricci/ricci Server.cpp Message-ID: <20061014175329.27772.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: kupcevic at sourceware.org 2006-10-14 17:53:28 Modified files: ricci/ricci : Server.cpp Log message: ricci: make server socket non-blocking (all sockets are non-blocking now) Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/ricci/Server.cpp.diff?cvsroot=cluster&r1=1.4&r2=1.5 --- conga/ricci/ricci/Server.cpp 2006/08/10 22:53:09 1.4 +++ conga/ricci/ricci/Server.cpp 2006/10/14 17:53:27 1.5 @@ -57,7 +57,9 @@ Server::Server(const ServerSocket& serv_sock) : _server(serv_sock) -{} +{ + _server.nonblocking(true); +} Server::~Server() {}