summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/google/gops/agent/sockopt_unix.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-12-31 14:48:12 +0100
committerGitHub <noreply@github.com>2020-12-31 14:48:12 +0100
commit4f20ebead36876a88391bf033d1de3e4cf0228da (patch)
tree70b6fd79c6a5e00c958c29a7bd3926f074e76ba6 /vendor/github.com/google/gops/agent/sockopt_unix.go
parenta9f89dbc645aafc68daa9fc8d589f55104b535c7 (diff)
downloadmatterbridge-msglm-4f20ebead36876a88391bf033d1de3e4cf0228da.tar.gz
matterbridge-msglm-4f20ebead36876a88391bf033d1de3e4cf0228da.tar.bz2
matterbridge-msglm-4f20ebead36876a88391bf033d1de3e4cf0228da.zip
Update vendor for next release (#1343)
Diffstat (limited to 'vendor/github.com/google/gops/agent/sockopt_unix.go')
-rw-r--r--vendor/github.com/google/gops/agent/sockopt_unix.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/vendor/github.com/google/gops/agent/sockopt_unix.go b/vendor/github.com/google/gops/agent/sockopt_unix.go
new file mode 100644
index 00000000..7edaf209
--- /dev/null
+++ b/vendor/github.com/google/gops/agent/sockopt_unix.go
@@ -0,0 +1,36 @@
+// Copyright 2020 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build !js,!plan9,!windows
+
+package agent
+
+import (
+ "syscall"
+
+ "golang.org/x/sys/unix"
+)
+
+// setsockoptReuseAddrAndPort sets the SO_REUSEADDR and SO_REUSEPORT socket
+// options on c's underlying socket in order to increase the chance to re-bind()
+// to the same address and port upon agent restart.
+func setsockoptReuseAddrAndPort(network, address string, c syscall.RawConn) error {
+ var soerr error
+ if err := c.Control(func(su uintptr) {
+ sock := int(su)
+ // Allow reuse of recently-used addresses. This socket option is
+ // set by default on listeners in Go's net package, see
+ // net.setDefaultSockopts.
+ soerr = unix.SetsockoptInt(sock, unix.SOL_SOCKET, unix.SO_REUSEADDR, 1)
+ if soerr != nil {
+ return
+ }
+ // Allow reuse of recently-used ports. This gives the agent a
+ // better chance to re-bind upon restarts.
+ soerr = unix.SetsockoptInt(sock, unix.SOL_SOCKET, unix.SO_REUSEPORT, 1)
+ }); err != nil {
+ return err
+ }
+ return soerr
+}