mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Remove almost all uses of NetAddress.
This probably has a bunch of bugs because of Network Order/Host Order issues. If we intend to actually support BE architectures, these problems are going to get much much worse :(
This commit is contained in:
@ -115,9 +115,8 @@ static bool QueryAccept (
|
||||
SimpleNetConn * ,
|
||||
const NetAddress & addr
|
||||
) {
|
||||
wchar_t str[64];
|
||||
NetAddressToString(addr, str, arrsize(str), kNetAddressFormatAll);
|
||||
LogMsg(kLogPerf, L"pfCsrSrv: Accepted connection from %s", str);
|
||||
plString str = addr.AsString();
|
||||
LogMsg(kLogPerf, L"pfCsrSrv: Accepted connection from %s", str.c_str());
|
||||
return channel == kSimpleNetChannelCsr;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user