mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-17 14:57:44 -05:00
Alias for ext: to reduce ambiguous ext: used without context
This commit is contained in:
parent
ff42cc8c86
commit
d2266bb52c
@ -260,9 +260,19 @@ func parseDomainRule(domain string) ([]*router.Domain, error) {
|
|||||||
}
|
}
|
||||||
return domains, nil
|
return domains, nil
|
||||||
}
|
}
|
||||||
|
var isExtDatFile = 0
|
||||||
if strings.HasPrefix(domain, "ext:") {
|
{
|
||||||
kv := strings.Split(domain[4:], ":")
|
const prefix = "ext:"
|
||||||
|
if strings.HasPrefix(domain, prefix) {
|
||||||
|
isExtDatFile = len(prefix)
|
||||||
|
}
|
||||||
|
const prefixQualified = "ext-domain:"
|
||||||
|
if strings.HasPrefix(domain, prefixQualified) {
|
||||||
|
isExtDatFile = len(prefixQualified)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if isExtDatFile != 0 {
|
||||||
|
kv := strings.Split(domain[isExtDatFile:], ":")
|
||||||
if len(kv) != 2 {
|
if len(kv) != 2 {
|
||||||
return nil, newError("invalid external resource: ", domain)
|
return nil, newError("invalid external resource: ", domain)
|
||||||
}
|
}
|
||||||
@ -314,9 +324,19 @@ func toCidrList(ips StringList) ([]*router.GeoIP, error) {
|
|||||||
})
|
})
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
var isExtDatFile = 0
|
||||||
if strings.HasPrefix(ip, "ext:") {
|
{
|
||||||
kv := strings.Split(ip[4:], ":")
|
const prefix = "ext:"
|
||||||
|
if strings.HasPrefix(ip, prefix) {
|
||||||
|
isExtDatFile = len(prefix)
|
||||||
|
}
|
||||||
|
const prefixQualified = "ext-ip:"
|
||||||
|
if strings.HasPrefix(ip, prefixQualified) {
|
||||||
|
isExtDatFile = len(prefixQualified)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if isExtDatFile != 0 {
|
||||||
|
kv := strings.Split(ip[isExtDatFile:], ":")
|
||||||
if len(kv) != 2 {
|
if len(kv) != 2 {
|
||||||
return nil, newError("invalid external resource: ", ip)
|
return nil, newError("invalid external resource: ", ip)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user