sockopt_other.go 289 B

1234567891011
  1. // +build js dragonfly freebsd netbsd openbsd
  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. }