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