github.com/rumpl/bof@v23.0.0-rc.2+incompatible/libnetwork/portallocator/portallocator_unix.go (about)

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