From 5750fbf65f1a27af80afb3e68353f3dc91d48bfc Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Tue, 7 Feb 2012 07:44:00 +0000 Subject: cSocket: Added more functions that will be needed for the new cSocketThreads git-svn-id: http://mc-server.googlecode.com/svn/trunk@237 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cSocket.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source/cSocket.h') diff --git a/source/cSocket.h b/source/cSocket.h index 81408c918..8098714c4 100644 --- a/source/cSocket.h +++ b/source/cSocket.h @@ -6,6 +6,7 @@ class cSocket { +public: #ifdef _WIN32 typedef SOCKET xSocket; #else @@ -13,7 +14,6 @@ class cSocket static const int INVALID_SOCKET = -1; #endif -public: cSocket(void) : m_Socket(INVALID_SOCKET) {} cSocket(xSocket a_Socket); ~cSocket(); @@ -55,11 +55,16 @@ public: static const short ADDRESS_FAMILY_INTERNET = 2; static const unsigned long INTERNET_ADDRESS_ANY = 0; + static unsigned long INTERNET_ADDRESS_LOCALHOST; // 127.0.0.1 represented in network byteorder int Bind( SockAddr_In& a_Address ); int Listen( int a_Backlog ); cSocket Accept(); + int Connect(SockAddr_In & a_Address); // Returns 0 on success, !0 on failure int Receive( char* a_Buffer, unsigned int a_Length, unsigned int a_Flags ); + int Send (const char * a_Buffer, unsigned int a_Length); + + unsigned short GetPort(void) const; // Returns 0 on failure const AString & GetIPString(void) const { return m_IPString; } -- cgit v1.2.3