Add disable_cache option to dns rule

This commit is contained in:
世界
2022-07-24 16:21:31 +08:00
parent 8666631732
commit af19ba6119
6 changed files with 127 additions and 82 deletions
+5
View File
@@ -50,3 +50,8 @@ type Rule interface {
Outbound() string
String() string
}
type DNSRule interface {
Rule
DisableCache() bool
}