summaryrefslogtreecommitdiffstats
path: root/source/cSocket.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-02 17:13:49 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-02 17:13:49 +0100
commitdca87cd2145d51ffca4212c2ab47a44c20c2ad26 (patch)
tree459c94748d4cb94bfa0ad948eb1d8783b9a747b5 /source/cSocket.h
parentWebServer: socket fix (force-terminated socket would cause the server to loop indefinitely) (diff)
downloadcuberite-dca87cd2145d51ffca4212c2ab47a44c20c2ad26.tar
cuberite-dca87cd2145d51ffca4212c2ab47a44c20c2ad26.tar.gz
cuberite-dca87cd2145d51ffca4212c2ab47a44c20c2ad26.tar.bz2
cuberite-dca87cd2145d51ffca4212c2ab47a44c20c2ad26.tar.lz
cuberite-dca87cd2145d51ffca4212c2ab47a44c20c2ad26.tar.xz
cuberite-dca87cd2145d51ffca4212c2ab47a44c20c2ad26.tar.zst
cuberite-dca87cd2145d51ffca4212c2ab47a44c20c2ad26.zip
Diffstat (limited to '')
-rw-r--r--source/cSocket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cSocket.h b/source/cSocket.h
index 395815389..5f373edac 100644
--- a/source/cSocket.h
+++ b/source/cSocket.h
@@ -10,7 +10,7 @@ class cSocket
typedef SOCKET xSocket;
#else
typedef int xSocket;
- static const int INVALID_SOCKET = 0;
+ static const int INVALID_SOCKET = -1;
#endif
public:
@@ -18,7 +18,7 @@ public:
cSocket(xSocket a_Socket);
~cSocket();
- bool IsValid(void) const {return (m_Socket != INVALID_SOCKET); }
+ bool IsValid(void) const;
void CloseSocket();
operator const xSocket() const;