diff options
Diffstat (limited to '')
-rw-r--r-- | src/server.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server.h b/src/server.h index 74ee99a..d6726fd 100644 --- a/src/server.h +++ b/src/server.h | |||
@@ -25,8 +25,8 @@ | |||
25 | 25 | ||
26 | namespace Bu | 26 | namespace Bu |
27 | { | 27 | { |
28 | class ServerSocket; | 28 | class TcpServerSocket; |
29 | class Socket; | 29 | class TcpSocket; |
30 | class Client; | 30 | class Client; |
31 | 31 | ||
32 | /** | 32 | /** |
@@ -97,7 +97,7 @@ namespace Bu | |||
97 | int nTimeoutSec; | 97 | int nTimeoutSec; |
98 | int nTimeoutUSec; | 98 | int nTimeoutUSec; |
99 | fd_set fdActive; | 99 | fd_set fdActive; |
100 | typedef Hash<int,ServerSocket *> SrvHash; | 100 | typedef Hash<int,TcpServerSocket *> SrvHash; |
101 | SrvHash hServers; | 101 | SrvHash hServers; |
102 | typedef Hash<int,Client *> ClientHash; | 102 | typedef Hash<int,Client *> ClientHash; |
103 | ClientHash hClients; | 103 | ClientHash hClients; |