mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
26 lines
440 B
Go
26 lines
440 B
Go
|
//go:build integration
|
||
|
|
||
|
package start
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"syscall"
|
||
|
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
func listenConfig() *net.ListenConfig {
|
||
|
return &net.ListenConfig{
|
||
|
Control: reusePort,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func reusePort(network, address string, conn syscall.RawConn) error {
|
||
|
return conn.Control(func(descriptor uintptr) {
|
||
|
err := syscall.SetsockoptInt(int(descriptor), syscall.SOL_SOCKET, unix.SO_REUSEPORT, 1)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
})
|
||
|
}
|