5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 21:46:57 +00:00
matterbridge/vendor/github.com/google/gops/agent/sockopt_reuseport.go

38 lines
1.2 KiB
Go
Raw Normal View History

2020-12-31 13:48:12 +00:00
// 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.
2021-10-30 13:17:50 +00:00
//go:build !js && !plan9 && !solaris && !windows
// +build !js,!plan9,!solaris,!windows
2020-12-31 13:48:12 +00:00
package agent
import (
"syscall"
"golang.org/x/sys/unix"
)
2021-10-30 13:17:50 +00:00
// setReuseAddrAndPortSockopts sets the SO_REUSEADDR and SO_REUSEPORT socket
2020-12-31 13:48:12 +00:00
// options on c's underlying socket in order to increase the chance to re-bind()
// to the same address and port upon agent restart.
2021-10-30 13:17:50 +00:00
func setReuseAddrAndPortSockopts(network, address string, c syscall.RawConn) error {
2020-12-31 13:48:12 +00:00
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
}