Browse Source

Fixes to GetMTUWindows and GetMTUWindowsIpv6 (thanks mlt).

pull/230/head
EinMByte 9 years ago
parent
commit
2bde6fc13b
  1. 4
      util.cpp

4
util.cpp

@ -562,7 +562,7 @@ namespace net { @@ -562,7 +562,7 @@ namespace net {
return fallback;
}
int GetMTUWindowsIpv6(sockaddr_in inputAddress, int fallback)
int GetMTUWindowsIpv6(sockaddr_in6 inputAddress, int fallback)
{
ULONG outBufLen = 0;
PIP_ADAPTER_ADDRESSES pAddresses = nullptr;
@ -645,7 +645,7 @@ namespace net { @@ -645,7 +645,7 @@ namespace net {
return GetMTUWindowsIpv6(inputAddress, fallback);
} else {
LogPrint(eLogError, "GetMTU() has failed: address family is not supported");
return result;
return fallback;
}
}

Loading…
Cancel
Save