Update of /cvsroot/sharedaemon/sharedaemon-ui-web/src/server/http
In directory sc8-pr-cvs1:/tmp/cvs-serv3326/src/server/http
Modified Files:
HttpServerSocket.cpp
Log Message:
27/12/2003 Mikael Barbeaux
* Fixed a Win32 compilation bug, should work perfectly now.
Index: HttpServerSocket.cpp
===================================================================
RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/src/server/http/HttpServerSocket.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- HttpServerSocket.cpp 27 Dec 2003 11:42:39 -0000 1.5
+++ HttpServerSocket.cpp 27 Dec 2003 11:56:06 -0000 1.6
@@ -113,7 +113,6 @@
* Stops the server.
*/
void HttpServerSocket::stop() throw (SocketException) {
- ServerSocket::close();
cancel();
// make a connection for stopping accept()
@@ -133,5 +132,7 @@
if(ret == -1)
throw SocketException(CantCreateSockExcp, "Cannot create socket.",
"HttpServerSocket::stop");
+
+ ServerSocket::close();
}
|