mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
d35e2400b2
Allows to bind to an address even if it is not actually (yet or ever) configured. Fixes #238 Rationale: https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget/#whatdoesthismeanformeadeveloper
20 lines
372 B
Go
20 lines
372 B
Go
// +build linux
|
|
|
|
package tcpsock
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func freeBind(network, address string, c syscall.RawConn) error {
|
|
var err, sockerr error
|
|
err = c.Control(func(fd uintptr) {
|
|
// apparently, this works for both IPv4 and IPv6
|
|
sockerr = syscall.SetsockoptInt(int(fd), syscall.SOL_IP, syscall.IP_FREEBIND, 1)
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return sockerr
|
|
}
|