sockopt_other.go 362 B

123456789101112131415
  1. // +build js dragonfly netbsd openbsd solaris
  2. package internet
  3. func applyOutboundSocketOptions(network string, address string, fd uintptr, config *SocketConfig) error {
  4. return nil
  5. }
  6. func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig) error {
  7. return nil
  8. }
  9. func bindAddr(fd uintptr, ip []byte, port uint32) error {
  10. return nil
  11. }