aboutsummaryrefslogtreecommitdiff
path: root/src/serversocket.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-04-26 15:06:49 +0000
committerMike Buland <eichlan@xagasoft.com>2007-04-26 15:06:49 +0000
commit530014a3cce53e86dce8917e98a4e86d02f176aa (patch)
treec667c996fb91692b101f75296206b8420f19bf73 /src/serversocket.h
parent066282ae6de25cf92780dbdaa2fd70a033e95659 (diff)
downloadlibbu++-530014a3cce53e86dce8917e98a4e86d02f176aa.tar.gz
libbu++-530014a3cce53e86dce8917e98a4e86d02f176aa.tar.bz2
libbu++-530014a3cce53e86dce8917e98a4e86d02f176aa.tar.xz
libbu++-530014a3cce53e86dce8917e98a4e86d02f176aa.zip
Merged Ito and put it in the BU namespace. I should probably clean up the
formatting on the comments, some of the lines wrap, but I'm not too worried about it right now. I also fixed up the doxygen config and build.conf files so that everything is building nice and smooth now.
Diffstat (limited to '')
-rw-r--r--src/serversocket.h31
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
8namespace 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