mediamtx/internal/client/utils.go

23 lines
305 B
Go
Raw Normal View History

2020-10-19 20:17:48 +00:00
package client
import (
"net"
)
func ipEqualOrInRange(ip net.IP, ips []interface{}) bool {
for _, item := range ips {
switch titem := item.(type) {
case net.IP:
if titem.Equal(ip) {
return true
}
case *net.IPNet:
if titem.Contains(ip) {
return true
}
}
}
return false
}