* util.cpp : reorder defines

This commit is contained in:
hagen 2015-12-28 00:00:00 +00:00
parent 1b2c88fe38
commit 8e867ab0c0

View File

@ -599,10 +599,10 @@ namespace net
{
const int fallback = 576; // fallback MTU
#if defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__APPLE__) || defined(__OpenBSD__)
return GetMTUUnix(localAddress, fallback);
#elif defined(WIN32)
#ifdef WIN32
return GetMTUWindows(localAddress, fallback);
#else
return GetMTUUnix(localAddress, fallback);
#endif
return fallback;
}