diff options
Diffstat (limited to '')
-rw-r--r-- | src/serversocket.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/serversocket.h b/src/serversocket.h index 9a26e2d..f146d91 100644 --- a/src/serversocket.h +++ b/src/serversocket.h | |||
@@ -2,13 +2,19 @@ | |||
2 | #define SERVER_SOCKET_H | 2 | #define SERVER_SOCKET_H |
3 | 3 | ||
4 | #include <stdint.h> | 4 | #include <stdint.h> |
5 | #include "fstring.h" | 5 | #include "bu/fstring.h" |
6 | #include "socket.h" | ||
7 | 6 | ||
8 | namespace Bu | 7 | namespace Bu |
9 | { | 8 | { |
10 | /** | 9 | /** |
10 | * A single tcp/ip server socket. When created the server socket will bind | ||
11 | * to the specified interface and port, and immediately begin listening for | ||
12 | * connections. When connections come in they are pooled by the networking | ||
13 | * drivers in the kernel until they are accepted, this means that failure | ||
14 | * to keep space in the connection pool will result in connection refusals. | ||
11 | * | 15 | * |
16 | * Although the accept function returns an integral file descriptor, it is | ||
17 | * designed to be used with the Socket class. | ||
12 | */ | 18 | */ |
13 | class ServerSocket | 19 | class ServerSocket |
14 | { | 20 | { |