diff options
author | Mattes D <github@xoft.cz> | 2015-01-18 15:40:39 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-01-22 20:13:03 +0100 |
commit | 00253403b3850911833638a960f3e7d0ea46e1ce (patch) | |
tree | 3a3e80719cb6249e57684f67c64fa78e9f61bd68 /src/OSSupport/TCPLinkImpl.cpp | |
parent | cNetwork: Fixed race conditions with lookups; proper shutdown. (diff) | |
download | cuberite-00253403b3850911833638a960f3e7d0ea46e1ce.tar cuberite-00253403b3850911833638a960f3e7d0ea46e1ce.tar.gz cuberite-00253403b3850911833638a960f3e7d0ea46e1ce.tar.bz2 cuberite-00253403b3850911833638a960f3e7d0ea46e1ce.tar.lz cuberite-00253403b3850911833638a960f3e7d0ea46e1ce.tar.xz cuberite-00253403b3850911833638a960f3e7d0ea46e1ce.tar.zst cuberite-00253403b3850911833638a960f3e7d0ea46e1ce.zip |
Diffstat (limited to 'src/OSSupport/TCPLinkImpl.cpp')
-rw-r--r-- | src/OSSupport/TCPLinkImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OSSupport/TCPLinkImpl.cpp b/src/OSSupport/TCPLinkImpl.cpp index bcacc0569..3c0775367 100644 --- a/src/OSSupport/TCPLinkImpl.cpp +++ b/src/OSSupport/TCPLinkImpl.cpp @@ -29,7 +29,7 @@ cTCPLinkImpl::cTCPLinkImpl(cTCPLink::cCallbacksPtr a_LinkCallbacks): -cTCPLinkImpl::cTCPLinkImpl(evutil_socket_t a_Socket, cTCPLink::cCallbacksPtr a_LinkCallbacks, cServerHandleImpl * a_Server, const sockaddr * a_Address, int a_AddrLen): +cTCPLinkImpl::cTCPLinkImpl(evutil_socket_t a_Socket, cTCPLink::cCallbacksPtr a_LinkCallbacks, cServerHandleImpl * a_Server, const sockaddr * a_Address, socklen_t a_AddrLen): super(a_LinkCallbacks), m_BufferEvent(bufferevent_socket_new(cNetworkSingleton::Get().GetEventBase(), a_Socket, BEV_OPT_CLOSE_ON_FREE)), m_Server(a_Server) @@ -234,7 +234,7 @@ void cTCPLinkImpl::EventCallback(bufferevent * a_BufferEvent, short a_What, void -void cTCPLinkImpl::UpdateAddress(const sockaddr * a_Address, int a_AddrLen, AString & a_IP, UInt16 & a_Port) +void cTCPLinkImpl::UpdateAddress(const sockaddr * a_Address, socklen_t a_AddrLen, AString & a_IP, UInt16 & a_Port) { // Based on the family specified in the address, use the correct datastructure to convert to IP string: char IP[128]; |