diff options
Diffstat (limited to 'src/serversocket.h')
-rw-r--r-- | src/serversocket.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/serversocket.h b/src/serversocket.h new file mode 100644 index 0000000..9a26e2d --- /dev/null +++ b/src/serversocket.h | |||
@@ -0,0 +1,31 @@ | |||
1 | #ifndef SERVER_SOCKET_H | ||
2 | #define SERVER_SOCKET_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include "fstring.h" | ||
6 | #include "socket.h" | ||
7 | |||
8 | namespace Bu | ||
9 | { | ||
10 | /** | ||
11 | * | ||
12 | */ | ||
13 | class ServerSocket | ||
14 | { | ||
15 | public: | ||
16 | ServerSocket( int nPort, int nPoolSize=40 ); | ||
17 | ServerSocket( const FString &sAddr, int nPort, int nPoolSize=40 ); | ||
18 | virtual ~ServerSocket(); | ||
19 | |||
20 | int accept( int nTimeoutSec, int nTimeoutUSec ); | ||
21 | |||
22 | private: | ||
23 | void startServer( struct sockaddr_in &name, int nPoolSize ); | ||
24 | |||
25 | fd_set fdActive; | ||
26 | int nServer; | ||
27 | int nPort; | ||
28 | }; | ||
29 | } | ||
30 | |||
31 | #endif | ||