diff options
Diffstat (limited to 'Ivy')
-rw-r--r-- | Ivy/ThreadedSocket.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Ivy/ThreadedSocket.h b/Ivy/ThreadedSocket.h index 1827c52..9771f10 100644 --- a/Ivy/ThreadedSocket.h +++ b/Ivy/ThreadedSocket.h @@ -21,7 +21,7 @@ public: public:
SOCKET m_hSocket;
- operator SOCKET() const;
+ inline operator SOCKET() const { return m_hSocket; };
void GetPeerName(string & rPeerAddress, unsigned int& rPeerPort);
@@ -57,9 +57,6 @@ public: unsigned int nHostPort, const char * lpszHostAddress = 0, int nFlags = 0);
-
-inline CThreadedSocket::operator SOCKET() const
- { return m_hSocket; }
inline int GetPeerName(SOCKADDR* lpSockAddr, int* lpSockAddrLen)
{
return getpeername(m_hSocket, lpSockAddr, lpSockAddrLen);
|