1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-26 05:46:10 -04:00

update confip ip to expectIPs

This commit is contained in:
weaving118 2019-11-20 17:20:33 +08:00
parent 101f5d32fa
commit e916a3b29d
No known key found for this signature in database
GPG Key ID: D1D2B8A0B60A4CBE

View File

@ -38,7 +38,7 @@ type MultiGeoIPMatcher struct {
matchers []*router.GeoIPMatcher
}
// Match for
// Match check ip match
func (c *MultiGeoIPMatcher) Match(ip net.IP) bool {
for _, matcher := range c.matchers {
if matcher.Match(ip) {
@ -48,7 +48,7 @@ func (c *MultiGeoIPMatcher) Match(ip net.IP) bool {
return false
}
// HasMatcher f
// HasMatcher check has matcher
func (c *MultiGeoIPMatcher) HasMatcher() bool {
if len(c.matchers) > 0 {
return true