sockopt_other.go 410 B

1234567891011121314151617
  1. // +build js dragonfly freebsd netbsd openbsd
  2. package internet
  3. import "v2ray.com/core/common/net"
  4. func applyOutboundSocketOptions(network string, address string, fd uintptr, config *SocketConfig) error {
  5. return nil
  6. }
  7. func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig) error {
  8. return nil
  9. }
  10. func bindAddr(fd uintptr, address net.Address, port net.Port) error {
  11. return nil
  12. }