From 9569f124d176b4220f28f9a41812c33883737228 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 13 Apr 2013 20:40:47 +0300 Subject: add const to sdltcpnet file. --- src/net/sdltcpnet.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/net/sdltcpnet.h') diff --git a/src/net/sdltcpnet.h b/src/net/sdltcpnet.h index 18cb1338c..449a41116 100644 --- a/src/net/sdltcpnet.h +++ b/src/net/sdltcpnet.h @@ -36,26 +36,26 @@ namespace TcpNet void quit(); - void closeSocket(TcpNet::Socket socket); + void closeSocket(const TcpNet::Socket socket); - int send(TcpNet::Socket sock, const void *const data, const int len); + int send(const TcpNet::Socket sock, const void *const data, const int len); char *getError(); - int resolveHost(IPaddress *const address, const char *host, + int resolveHost(IPaddress *const address, const char *const host, const Uint16 port); TcpNet::Socket open(IPaddress *const ip); SocketSet allocSocketSet(const int maxsockets); - int addSocket(TcpNet::SocketSet set, TcpNet::Socket sock); + int addSocket(const TcpNet::SocketSet set, const TcpNet::Socket sock); int checkSockets(const TcpNet::SocketSet set, const Uint32 timeout); - int recv(TcpNet::Socket sock, void *data, int maxlen); + int recv(const TcpNet::Socket sock, void *const data, const int maxlen); - int delSocket(TcpNet::SocketSet set, TcpNet::Socket sock); + int delSocket(const TcpNet::SocketSet set, const TcpNet::Socket sock); void freeSocketSet(TcpNet::SocketSet set); } // namespace TcpNet -- cgit v1.2.3-70-g09d2