mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
option: Fix marshal legacy DNS options
This commit is contained in:
parent
439f3c05ec
commit
0d65af5d0a
8 changed files with 79 additions and 37 deletions
|
@ -99,7 +99,9 @@ type _DomainResolveOptions struct {
|
|||
type DomainResolveOptions _DomainResolveOptions
|
||||
|
||||
func (o DomainResolveOptions) MarshalJSON() ([]byte, error) {
|
||||
if o.Strategy == DomainStrategy(C.DomainStrategyAsIS) &&
|
||||
if o.Server == "" {
|
||||
return []byte("{}"), nil
|
||||
} else if o.Strategy == DomainStrategy(C.DomainStrategyAsIS) &&
|
||||
!o.DisableCache &&
|
||||
o.RewriteTTL == nil &&
|
||||
o.ClientSubnet == nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue