summaryrefslogtreecommitdiff
path: root/listen_unix.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 /listen_unix.go
parent806341e089ed3e5ac825c4844f6fa4d437fdb642 (diff)
Fix compile on Windows, hopefully
Diffstat (limited to 'listen_unix.go')
-rw-r--r--listen_unix.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/listen_unix.go b/listen_unix.go
index 7011a1e..e31ecac 100644
--- a/listen_unix.go
+++ b/listen_unix.go
@@ -108,6 +108,15 @@ func listenTCPOrUnix(ctx context.Context, lnKey string, network, address string,
listenerPool.LoadOrStore(lnKey, nil)
}
+ // 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)
+ if unix, ok := ln.(*net.UnixListener); ok {
+ unix.SetUnlinkOnClose(false)
+ ln = &unixListener{unix, lnKey, &one}
+ unixSockets[lnKey] = ln.(*unixListener)
+ }
+
// lightly wrap the listener so that when it is closed,
// we can decrement the usage pool counter
return deleteListener{ln, lnKey}, err