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