mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
Fixes to GetMTUWindows and GetMTUWindowsIpv6 (thanks mlt).
This commit is contained in:
4
util.cpp
4
util.cpp
@@ -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 {
|
||||
return GetMTUWindowsIpv6(inputAddress, fallback);
|
||||
} else {
|
||||
LogPrint(eLogError, "GetMTU() has failed: address family is not supported");
|
||||
return result;
|
||||
return fallback;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user