//go:build linux package monitor import "syscall" // bindControl returns no socket control hook on Linux: binding the dialer's // local source address (as tcpDuration already does) is enough to send // traffic out of the chosen interface. func bindControl(_ string) func(network, address string, c syscall.RawConn) error { return nil }