summaryrefslogtreecommitdiff
path: root/listeners.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2023-06-21 17:47:23 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2023-06-21 17:47:23 -0600
commit9563666bfb93f1708b044c7b1e5d0aa91afd029a (patch)
treeec833d22ba8456af1fa6e59a27dcaf7f00395c66 /listeners.go
parent806341e089ed3e5ac825c4844f6fa4d437fdb642 (diff)
Fix compile on Windows, hopefully
Diffstat (limited to 'listeners.go')
-rw-r--r--listeners.go18
1 files changed, 5 insertions, 13 deletions
diff --git a/listeners.go b/listeners.go
index 1429b14..08bdbcf 100644
--- a/listeners.go
+++ b/listeners.go
@@ -186,19 +186,11 @@ func (na NetworkAddress) listen(ctx context.Context, portOffset uint, config net
return nil, fmt.Errorf("unsupported network type: %s", na.Network)
}
- // if new listener is a unix socket, make sure we can reuse it later
- // (we do our own "unlink on close" -- not required, but more tidy)
- one := int32(1)
- switch lnValue := ln.(type) {
- case deleteListener:
- if unix, ok := lnValue.Listener.(*net.UnixListener); ok {
- unix.SetUnlinkOnClose(false)
- ln = &unixListener{unix, lnKey, &one}
- unixSockets[lnKey] = ln.(*unixListener)
- }
- case *net.UnixConn:
- ln = &unixConn{lnValue, address, lnKey, &one}
- unixSockets[lnKey] = ln.(*unixConn)
+ // TODO: Not 100% sure this is necessary, but we do this for net.UnixListener in listen_unix.go, so...
+ if unix, ok := ln.(*net.UnixConn); ok {
+ one := int32(1)
+ ln = &unixConn{unix, address, lnKey, &one}
+ unixSockets[lnKey] = unix
}
return ln, nil