Browse Source

* util.cpp : reorder defines

pull/317/head
hagen 9 years ago
parent
commit
8e867ab0c0
  1. 6
      util.cpp

6
util.cpp

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

Loading…
Cancel
Save