option: Fix marshal legacy DNS options

This commit is contained in:
世界 2025-03-15 15:58:12 +08:00
parent 439f3c05ec
commit 0d65af5d0a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
8 changed files with 79 additions and 37 deletions

View file

@ -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 {