2018-09-10 19:47:24 +00:00
|
|
|
// +build js dragonfly freebsd netbsd openbsd
|
2018-09-06 08:06:57 +00:00
|
|
|
|
|
|
|
package internet
|
|
|
|
|
2018-09-17 13:12:58 +00:00
|
|
|
import "v2ray.com/core/common/net"
|
|
|
|
|
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, address net.Address, port net.Port) error {
|
|
|
|
return nil
|
|
|
|
}
|