mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
9 lines
177 B
Go
9 lines
177 B
Go
package netutils
|
|
|
|
import "net/netip"
|
|
|
|
// InferReservedNetworks returns an empty list on FreeBSD.
|
|
func InferReservedNetworks(v6 bool) []netip.Prefix {
|
|
return []netip.Prefix{}
|
|
}
|