diff options
Diffstat (limited to 'src/net/sdltcpnet.h')
-rw-r--r-- | src/net/sdltcpnet.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/sdltcpnet.h b/src/net/sdltcpnet.h index 6b42ee1f7..fe3a7be66 100644 --- a/src/net/sdltcpnet.h +++ b/src/net/sdltcpnet.h @@ -49,6 +49,8 @@ namespace TcpNet int addSocket(const TcpNet::SocketSet set, const TcpNet::Socket sock); + int socketReady(const TcpNet::Socket sock); + int checkSockets(const TcpNet::SocketSet set, const Uint32 timeout); int recv(const TcpNet::Socket sock, void *const data, const int maxlen); @@ -56,6 +58,8 @@ namespace TcpNet int delSocket(const TcpNet::SocketSet set, const TcpNet::Socket sock); void freeSocketSet(const TcpNet::SocketSet set); + + TcpNet::Socket accept(const TcpNet::Socket sock); } // namespace TcpNet #endif // NET_SDLTCPNET_H |