DEBSOURCES
Skip Quicknav
sources / witr / 0.2.4%2Bds-1 / internal / source / network.go
12345678910
package source func IsPublicBind(addrs []string) bool { for _, a := range addrs { if a == "0.0.0.0" || a == "::" { return true } } return false }