mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
Add disableCache/disableExpire option for dns client
This commit is contained in:
parent
8a761d7e3b
commit
ecac383477
5 changed files with 138 additions and 105 deletions
|
@ -2,11 +2,17 @@ package option
|
|||
|
||||
type DNSOptions struct {
|
||||
Servers []DNSServerOptions `json:"servers,omitempty"`
|
||||
DNSClientOptions
|
||||
}
|
||||
|
||||
type DNSClientOptions struct {
|
||||
DisableCache bool `json:"disable_cache,omitempty"`
|
||||
DisableExpire bool `json:"disable_expire,omitempty"`
|
||||
}
|
||||
|
||||
type DNSServerOptions struct {
|
||||
Tag string `json:"tag,omitempty"`
|
||||
Address string `json:"address"`
|
||||
Detour string `json:"detour,omitempty"`
|
||||
AddressResolver string `json:"address_resolver,omitempty"`
|
||||
DialerOptions
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue