diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /netwerk/dns/ODoH.h | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'netwerk/dns/ODoH.h')
-rw-r--r-- | netwerk/dns/ODoH.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/netwerk/dns/ODoH.h b/netwerk/dns/ODoH.h new file mode 100644 index 0000000000..385ac83bd5 --- /dev/null +++ b/netwerk/dns/ODoH.h @@ -0,0 +1,60 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set sw=2 ts=8 et tw=80 : */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_net_ODoH_h +#define mozilla_net_ODoH_h + +#include "TRR.h" + +namespace mozilla { +namespace net { + +class ODoH final : public TRR { + public: + explicit ODoH(AHostResolver* aResolver, nsHostRecord* aRec, + enum TrrType aType) + : TRR(aResolver, aRec, aType) {} + // when following CNAMEs + explicit ODoH(AHostResolver* aResolver, nsHostRecord* aRec, nsCString& aHost, + enum TrrType& aType, unsigned int aLoopCount, bool aPB) + : TRR(aResolver, aRec, aHost, aType, aLoopCount, aPB) {} + NS_IMETHOD Run() override; + // ODoH should not support push. + NS_IMETHOD GetInterface(const nsIID&, void**) override { + return NS_ERROR_NO_INTERFACE; + } + + protected: + virtual ~ODoH() = default; + virtual DNSPacket* GetOrCreateDNSPacket() override; + virtual nsresult CreateQueryURI(nsIURI** aOutURI) override; + virtual const char* ContentType() const override { + return "application/oblivious-dns-message"; + } + virtual DNSResolverType ResolverType() const override { + return DNSResolverType::ODoH; + } + virtual bool MaybeBlockRequest() override { + // TODO: check excluded list + return false; + }; + virtual void RecordProcessingTime(nsIChannel* aChannel) override { + // TODO: record processing time for ODoH. + } + virtual void ReportStatus(nsresult aStatusCode) override { + // TODO: record status in ODoHService. + } + virtual void HandleTimeout() override; + virtual void HandleEncodeError(nsresult aStatusCode) override; + virtual void HandleDecodeError(nsresult aStatusCode) override; + + bool mTriedDownloadODoHConfigs = false; +}; + +} // namespace net +} // namespace mozilla + +#endif |