Imported Upstream version 5.16.0.149

Former-commit-id: 14c55149475ede19ed48b6a8018dc6d18549c21b
This commit is contained in:
Xamarin Public Jenkins (auto-signing) 2018-09-07 08:27:29 +00:00
parent 3ba69ac8f6
commit c92293d6a6
53 changed files with 141 additions and 65 deletions

View File

@ -1 +1 @@
7552f94c31b6c3bfc3f105917d070d37e49ba83d
0ce11501124227087f971ccc176d0f620c2b3afc

View File

@ -1 +1 @@
6e456112b3a4d9b08a90e185130eeefdbf02858e
e5a5ec7e6126a46c206b043b53c87299e9751280

View File

@ -1 +1 @@
43e79bb02715ef88b41fd6dc800e96b3f58ff973
2e6aca36b1f1bc468d57c112a6812fecd62982b0

View File

@ -1 +1 @@
9b782c31cf1cda31f6ee1a3b9e12cf3bd723fb30
9d073102395241a169f95cfba5a149ed33df2f5c

View File

@ -1711,6 +1711,7 @@ int32_t SystemNative_GetSockOpt(
return Error_EINVAL;
}
#ifdef SO_REUSEPORT
socklen_t optLen = (socklen_t)*optionLen;
// On Unix, SO_REUSEPORT controls the ability to bind multiple sockets to the same address.
int err = getsockopt(fd, SOL_SOCKET, SO_REUSEPORT, optionValue, &optLen);
@ -1731,7 +1732,9 @@ int32_t SystemNative_GetSockOpt(
value = value == 0 ? 1 : 0;
}
*(int32_t*)optionValue = value;
#else
*optionValue = 0;
#endif
return Error_SUCCESS;
}
}
@ -1790,6 +1793,7 @@ SystemNative_SetSockOpt(intptr_t socket, int32_t socketOptionLevel, int32_t sock
// We make both SocketOptionName_SO_REUSEADDR and SocketOptionName_SO_EXCLUSIVEADDRUSE control SO_REUSEPORT.
if (socketOptionName == SocketOptionName_SO_EXCLUSIVEADDRUSE || socketOptionName == SocketOptionName_SO_REUSEADDR)
{
#ifdef SO_REUSEPORT
if (optionLen != sizeof(int32_t))
{
return Error_EINVAL;
@ -1812,6 +1816,9 @@ SystemNative_SetSockOpt(intptr_t socket, int32_t socketOptionLevel, int32_t sock
int err = setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &value, (socklen_t)optionLen);
return err == 0 ? Error_SUCCESS : SystemNative_ConvertErrorPlatformToPal(errno);
#else
return Error_SUCCESS;
#endif
}
}
#ifdef IP_MTU_DISCOVER

View File

@ -34,7 +34,7 @@ static class Consts
// Use these assembly version constants to make code more maintainable.
//
public const string MonoVersion = "5.16.0.147";
public const string MonoVersion = "5.16.0.149";
public const string MonoCompany = "Mono development team";
public const string MonoProduct = "Mono Common Language Infrastructure";
public const string MonoCopyright = "(c) Various Mono authors";

View File

@ -1 +1 @@
3bef811522cfefd473c3a19057733bc3bb933841
977f587aa6001f1c2f62d7fa0e222b013c9a14be

View File

@ -1 +1 @@
ea0566efb289eadaf4380ed461e880412421d2b5
7b9c5fd1c0b674f8fa1a62d4a0af485f5b7a8686

View File

@ -1 +1 @@
9daf5b25db435c76eb1ac03188d8f197da765331
3c18ef9382bd55d045696e1ce0352e62182bbad1

View File

@ -1 +1 @@
03bd3ffc76a6b0250bacf9eaed5a01885f51e28b
1deb3b48f9f17958091e66443b9ee8edf4128532

View File

@ -1 +1 @@
f339075882428e73eeb05b6fecd0add018de02b7
42f5c77c39919687b66b96f6acde71daeca87492

View File

@ -1 +1 @@
c8fbfe870e9a1807acf4794a30f178bb96f93c64
0bef82188692ed7b1d07b578b9e16d7dd4427d74

View File

@ -1 +1 @@
a16e10b83b7d8ff21a6b6bc05cb778c105aa06f2
507dc2d482157fa3e043ee642930c367154e2a20

View File

@ -1 +1 @@
3bef811522cfefd473c3a19057733bc3bb933841
977f587aa6001f1c2f62d7fa0e222b013c9a14be

View File

@ -1 +1 @@
ea0566efb289eadaf4380ed461e880412421d2b5
7b9c5fd1c0b674f8fa1a62d4a0af485f5b7a8686

View File

@ -1 +1 @@
9daf5b25db435c76eb1ac03188d8f197da765331
3c18ef9382bd55d045696e1ce0352e62182bbad1

View File

@ -1 +1 @@
03bd3ffc76a6b0250bacf9eaed5a01885f51e28b
1deb3b48f9f17958091e66443b9ee8edf4128532

View File

@ -1 +1 @@
f339075882428e73eeb05b6fecd0add018de02b7
42f5c77c39919687b66b96f6acde71daeca87492

Some files were not shown because too many files have changed in this diff Show More