portallocator_unix.go 333 B

123456789101112
  1. //go:build !windows
  2. package portallocator
  3. const (
  4. // defaultPortRangeStart indicates the first port in port range
  5. defaultPortRangeStart = 49153
  6. // defaultPortRangeEnd indicates the last port in port range
  7. // consistent with default /proc/sys/net/ipv4/ip_local_port_range
  8. // upper bound on linux
  9. defaultPortRangeEnd = 65535
  10. )