From: Christian P. <cp...@us...> - 2005-02-10 19:14:00
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/Net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2439/include/pclasses/Net Modified Files: Makefile.am Socket.h Log Message: Renamed FdListenerThread -> FdListenerList. Waiting for signaled Fd's is now done by the EventQueue - not by a seperate Thread. Added Socket::setBlocking(bool). Index: Makefile.am =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Net/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 16 Jan 2005 00:08:08 -0000 1.4 +++ Makefile.am 10 Feb 2005 19:13:45 -0000 1.5 @@ -2,5 +2,6 @@ INCLUDES = METASOURCES = AUTO -pclasses_net_include_HEADERS = NetworkAddress.h Socket.h InetAddress.h InetSocket.h \ - HTTPHeader.h HTTPClient.h RTSPHeader.h RTSPSocket.h RTSPSession.h +pclasses_net_include_HEADERS = NetworkAddress.h Socket.h InetAddress.h \ + InetSocket.h ServerSocketManager.h HTTPHeader.h HTTPClient.h RTSPHeader.h \ + RTSPSocket.h RTSPSession.h Index: Socket.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Net/Socket.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Socket.h 7 Feb 2005 18:47:13 -0000 1.7 +++ Socket.h 10 Feb 2005 19:13:46 -0000 1.8 @@ -89,6 +89,8 @@ void setRouting(bool enable) throw(IO::IOError); + void setBlocking(bool enable) throw(IO::IOError); + int wait(int wait, unsigned int timeout) throw(IO::IOError); static int wait(Socket* s[], int wait[], int num, unsigned int timeout) |