udp_socket_other.go 230 B

12345678910
  1. //go:build !windows
  2. package service
  3. import "syscall"
  4. // Non-Windows UDP implementations permit broadcast without an explicit socket option.
  5. func enableBroadcastSocketOption(_, _ string, _ syscall.RawConn) error {
  6. return nil
  7. }