diff options
Diffstat (limited to '')
-rw-r--r-- | source/Server.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source/Server.cpp b/source/Server.cpp index 7a41352ab..1e830874e 100644 --- a/source/Server.cpp +++ b/source/Server.cpp @@ -188,12 +188,7 @@ bool cServer::InitServer(cIniFile & a_SettingsIni) int Port = a_SettingsIni.GetValueSetI("Server", "Port", 25565); - cSocket::SockAddr_In local; - local.Family = cSocket::ADDRESS_FAMILY_INTERNET; - local.Address = cSocket::INTERNET_ADDRESS_ANY; - local.Port = (unsigned short)Port; - - if( m_pState->SListenClient.Bind( local ) != 0 ) + if (m_pState->SListenClient.BindToAny(Port) != 0) { LOGERROR("bind fail (%s)", cSocket::GetErrorString( cSocket::GetLastError() ).c_str() ); return false; |