summaryrefslogtreecommitdiffstats
path: root/source/cSocket.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-01 23:38:03 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-01 23:38:03 +0100
commit48d30d6ab4657e00c0c861d67285256daeff1142 (patch)
treeb9dc6b6e59f09224fe3e2b80c5c247b44331e469 /source/cSocket.h
parentAdded all current hooks to the new plugin structure. (diff)
downloadcuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar
cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.gz
cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.bz2
cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.lz
cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.xz
cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.zst
cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.zip
Diffstat (limited to 'source/cSocket.h')
-rw-r--r--source/cSocket.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/cSocket.h b/source/cSocket.h
index 43bb8ee09..44c3bea4b 100644
--- a/source/cSocket.h
+++ b/source/cSocket.h
@@ -10,15 +10,15 @@ class cSocket
typedef SOCKET xSocket;
#else
typedef int xSocket;
+ static const int INVALID_SOCKET = 0;
#endif
public:
- cSocket() : m_Socket( 0 ) {}
-
- cSocket( xSocket a_Socket );
+ cSocket(void) : m_Socket(INVALID_SOCKET) {}
+ cSocket(xSocket a_Socket);
~cSocket();
- bool IsValid();
+ bool IsValid(void) const {return (m_Socket != INVALID_SOCKET); }
void CloseSocket();
operator const xSocket() const;