2020-03-21 22:50:52 +00:00
|
|
|
// +build js dragonfly netbsd openbsd solaris
|
2018-09-06 08:06:57 +00:00
|
|
|
|
|
|
|
package internet
|
|
|
|
|
2018-09-10 11:23:27 +00:00
|
|
|
func applyOutboundSocketOptions(network string, address string, fd uintptr, config *SocketConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig) error {
|
2018-09-06 08:06:57 +00:00
|
|
|
return nil
|
|
|
|
}
|
2018-09-17 13:12:58 +00:00
|
|
|
|
2018-11-21 13:54:40 +00:00
|
|
|
func bindAddr(fd uintptr, ip []byte, port uint32) error {
|
2018-09-17 13:12:58 +00:00
|
|
|
return nil
|
|
|
|
}
|