Merge pull request #107 from vibe-d/disable_so_addr

Add `StreamListenOptions.reuseAddress`.
This commit is contained in:
Leonid Kramer 2019-04-01 20:38:29 +02:00 committed by GitHub
commit 1bbe244196
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 9 deletions

View file

@ -876,8 +876,13 @@ enum ConnectionState {
}
enum StreamListenOptions {
defaults = 0,
none = 0,
/// Applies the `SO_REUSEPORT` flag
reusePort = 1<<0,
/// Avoids applying the `SO_REUSEADDR` flag
reuseAddress = 1<<1,
///
defaults = reuseAddress,
}
enum StreamSocketOption {

View file

@ -221,9 +221,11 @@ final class PosixEventDriverSockets(Loop : PosixEventLoop) : EventDriverSockets
() @trusted {
int tmp_reuse = 1;
// FIXME: error handling!
if ((options & StreamListenOptions.reusePort) && setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &tmp_reuse, tmp_reuse.sizeof) != 0) {
invalidateSocket();
return;
if (options & StreamListenOptions.reuseAddress) {
if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &tmp_reuse, tmp_reuse.sizeof) != 0) {
invalidateSocket();
return;
}
}
version (Windows) {} else {
if ((options & StreamListenOptions.reusePort) && setsockopt(sockfd, SOL_SOCKET, SO_REUSEPORT, &tmp_reuse, tmp_reuse.sizeof) != 0) {

View file

@ -42,7 +42,7 @@ final class WinAPIEventDriverSockets : EventDriverSockets {
package bool checkForLeakedHandles()
{
if (m_socketCount == 0) return false;
print("Warning: Socket handles leaked at driver shutdown.");
print("Warning: %s socket handles leaked at driver shutdown.", m_socketCount);
return true;
}
@ -155,10 +155,12 @@ final class WinAPIEventDriverSockets : EventDriverSockets {
void invalidateSocket() @nogc @trusted nothrow { closesocket(fd); fd = INVALID_SOCKET; }
() @trusted {
int tmp_reuse = 1;
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &tmp_reuse, tmp_reuse.sizeof) != 0) {
invalidateSocket();
return;
if (options & StreamListenOptions.reuseAddress) {
int tmp_reuse = 1;
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &tmp_reuse, tmp_reuse.sizeof) != 0) {
invalidateSocket();
return;
}
}
// FIXME: should SO_EXCLUSIVEADDRUSE be used of StreamListenOptions.reuseAddress isn't set?