1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-30 19:15:23 +00:00
v2fly/transport/internet/sockopt_other.go

24 lines
468 B
Go
Raw Normal View History

// +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
func bindAddr(fd uintptr, ip []byte, port uint32) error {
2018-09-17 13:12:58 +00:00
return nil
}
func setReuseAddr(fd uintptr) error {
return nil
}
func setReusePort(fd uintptr) error {
return nil
}