Add disable_cache option to dns rule

This commit is contained in:
世界 2022-07-24 14:05:06 +08:00
parent 8666631732
commit af19ba6119
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 127 additions and 82 deletions

View file

@ -50,3 +50,8 @@ type Rule interface {
Outbound() string
String() string
}
type DNSRule interface {
Rule
DisableCache() bool
}