mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
11 lines
171 B
Go
11 lines
171 B
Go
package rules
|
|
|
|
//go:generate go run chinaip_gen.go
|
|
|
|
func NewChinaIPRule(tag string) *Rule {
|
|
return &Rule{
|
|
Tag: tag,
|
|
Condition: NewIPv4Matcher(chinaIPNet),
|
|
}
|
|
}
|