mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
c07411e314
* fix: only reuse port for integration tests * exclude default listenConfig from integration build
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)
|
|
}
|
|
})
|
|
}
|