]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: doh3, appease the CI folks
authorCharles-Henri Bruyand <charles-henri.bruyand@open-xchange.com>
Mon, 4 Dec 2023 08:58:18 +0000 (09:58 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 8 Dec 2023 08:09:53 +0000 (09:09 +0100)
pdns/dnsdistdist/docs/guides/dns-over-http3.rst
pdns/dnsdistdist/doh3.cc
pdns/dnsdistdist/doq-common.cc
pdns/dnsdistdist/doq-common.hh

index a5c54431c235d8a8227c2da5137e039cc8a83324..2824069ed43abbb10a91bcae9d3b86b08fc73c04 100644 (file)
@@ -1,5 +1,5 @@
 DNS-over-HTTP/3 (DoH3)
-====================
+======================
 
 :program:`dnsdist` supports DNS-over-HTTP/3 (DoH3) for incoming queries since 1.9.0.
 To see if the installation supports this, run ``dnsdist --version``.
index 71593f007d4c4916642d7ec22b947f472ba7ee00..02a2ea928ca849ea1b0c425368ac579c112f9c68 100644 (file)
@@ -100,7 +100,6 @@ struct DOH3ServerConfig
 DOH3Frontend::DOH3Frontend() = default;
 DOH3Frontend::~DOH3Frontend() = default;
 
-
 class DOH3TCPCrossQuerySender final : public TCPQuerySender
 {
 public:
index c06ef4962287043a3c46e6ff890b383c8f995870..211928aee55bd56e1195e5a7f1ca4b109a4e78d5 100644 (file)
@@ -26,7 +26,8 @@
 
 #ifdef HAVE_DNS_OVER_QUIC
 
-namespace dnsdist::doq {
+namespace dnsdist::doq
+{
 
 static const std::string s_quicRetryTokenKey = newKey(false);
 
index 53552c34fe88cb4a5695386b728282ff6ea9dc00..6fac2a3a81483672469c439cf84829bd314530e8 100644 (file)
@@ -84,7 +84,6 @@ static constexpr size_t LOCAL_CONN_ID_LEN = 16;
 static constexpr std::array<uint8_t, 4> DOQ_ALPN{'\x03', 'd', 'o', 'q'};
 static constexpr std::array<uint8_t, 3> DOH3_ALPN{'\x02', 'h', '3'};
 
-
 void fillRandom(PacketBuffer& buffer, size_t size);
 std::optional<PacketBuffer> getCID();
 PacketBuffer mintToken(const PacketBuffer& dcid, const ComboAddress& peer);