mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Add dns client
This commit is contained in:
parent
651c4b539a
commit
8a761d7e3b
23 changed files with 582 additions and 145 deletions
12
option/dns.go
Normal file
12
option/dns.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
package option
|
||||
|
||||
type DNSOptions struct {
|
||||
Servers []DNSServerOptions `json:"servers,omitempty"`
|
||||
}
|
||||
|
||||
type DNSServerOptions struct {
|
||||
Tag string `json:"tag,omitempty"`
|
||||
Address string `json:"address"`
|
||||
Detour string `json:"detour,omitempty"`
|
||||
AddressResolver string `json:"address_resolver,omitempty"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue