LibWebView+RequestSever: Wire up a validate-DNSSEC setting option to RS

This commit is contained in:
Ali Mohammad Pur 2025-05-13 12:34:55 +02:00 committed by Ali Mohammad Pur
commit 4b5664f867
Notes: github-actions[bot] 2025-06-11 16:17:43 +00:00
9 changed files with 39 additions and 19 deletions

View file

@ -56,10 +56,12 @@ struct SystemDNS { };
struct DNSOverTLS {
ByteString server_address;
u16 port;
bool validate_dnssec_locally;
};
struct DNSOverUDP {
ByteString server_address;
u16 port;
bool validate_dnssec_locally;
};
using DNSSettings = Variant<SystemDNS, DNSOverTLS, DNSOverUDP>;