00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef CABAL_SSOCKET_H
00015 #define CABAL_SSOCKET_H
00016
00017 #include <cabal_tcpsocket.h>
00018 #include <string>
00019
00020 namespace Cabal {
00021
00022
00030 class ServerSocket: public TCPSocket
00031 {
00032
00033 public:
00034 ServerSocket( const Address &local, int timeout=-1, int incomingMax=0 )
00035 throw( InitError );
00036
00037 ServerSocket( const char *ip, const int port, int timeout=-1, int incomingMax=0 )
00038 throw( InitError );
00039
00040 ServerSocket( const std::string &ip, const int port, int timeout=-1, int incomingMax=0 )
00041 throw( InitError );
00042
00051 TCPSocket *accept();
00052 };
00053
00054 }
00055
00056 #endif
00057
00058