Make domain_resolver optional when only one DNS server is configured

This commit is contained in:
世界 2025-03-15 10:12:10 +08:00
parent ea4d01e6e8
commit 74c356b533
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 22 additions and 2 deletions

View file

@ -116,7 +116,14 @@ func (o *DomainResolveOptions) UnmarshalJSON(bytes []byte) error {
o.Server = stringValue
return nil
}
return json.Unmarshal(bytes, (*_DomainResolveOptions)(o))
err = json.Unmarshal(bytes, (*_DomainResolveOptions)(o))
if err != nil {
return err
}
if o.Server == "" {
return E.New("empty domain_resolver.server")
}
return nil
}
func (o *DialerOptions) TakeDialerOptions() DialerOptions {