1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-09 06:44:30 -04:00
v2fly/transport/internet/sockopt_other.go

16 lines
362 B
Go
Raw Normal View History

// +build js dragonfly netbsd openbsd solaris
2018-09-06 04:06:57 -04:00
package internet
2018-09-10 07:23:27 -04: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 04:06:57 -04:00
return nil
}
2018-09-17 09:12:58 -04:00
func bindAddr(fd uintptr, ip []byte, port uint32) error {
2018-09-17 09:12:58 -04:00
return nil
}