mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
This file *BROKEN AGAIN* in windows builds (VC9) - uint_16t and uint_32t do not exist in windows visual studio 2008! I will fix this at some later date unless someone beats me to it, as i still have no access to a reasonable PC.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11406 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
6b13769673
commit
48045988a4
@ -71,7 +71,7 @@ void ListenSocketBase::AcceptInternal()
|
|||||||
}
|
}
|
||||||
|
|
||||||
socklen_t sz = sizeof(server);
|
socklen_t sz = sizeof(server);
|
||||||
if (getsockname(incomingSockfd, &server.sa, &sz));
|
if (getsockname(incomingSockfd, &server.sa, &sz))
|
||||||
ServerInstance->Logs->Log("SOCKET", DEBUG, "Can't get peername: %s", strerror(errno));
|
ServerInstance->Logs->Log("SOCKET", DEBUG, "Can't get peername: %s", strerror(errno));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user