aboutsummaryrefslogtreecommitdiff
path: root/server/dial.go
blob: 7e514db52537af75114c46e98fec4ab885c08482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//go:build !linux
// +build !linux

package main

import "syscall"

// dialerControl does nothing.
//
// On Linux, this function would set the IP_BIND_ADDRESS_NO_PORT socket option
// in preparation for a future bind-before-connect.
func dialerControl(network, address string, c syscall.RawConn) error {
	return nil
}