In modern C++, static constexpr member variables are automatically inline (aka weak) so the template trick is not needed. This also avoid duplication and reduces the amount of parsed code. No impact on generated binary (actually: smaller debuginfo, close to identical binary). Differential Revision: https://phabricator.services.mozilla.com/D247825
63 lines
1.9 KiB
C++
63 lines
1.9 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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 QuicSocketControl_h
|
|
#define QuicSocketControl_h
|
|
|
|
#include "CommonSocketControl.h"
|
|
#include "nsIWeakReferenceUtils.h"
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
class Http3Session;
|
|
|
|
// IID for the QuicSocketControl interface
|
|
#define NS_QUICSOCKETCONTROL_IID \
|
|
{0xdbc67fd0, 0x1ac6, 0x457b, {0x91, 0x4e, 0x4c, 0x86, 0x60, 0xff, 0x00, 0x69}}
|
|
|
|
class QuicSocketControl final : public CommonSocketControl {
|
|
public:
|
|
NS_INLINE_DECL_STATIC_IID(NS_QUICSOCKETCONTROL_IID);
|
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(QuicSocketControl, CommonSocketControl);
|
|
|
|
NS_IMETHOD GetSSLVersionOffered(int16_t* aSSLVersionOffered) override;
|
|
|
|
QuicSocketControl(const nsCString& aHostName, int32_t aPort,
|
|
uint32_t aProviderFlags, Http3Session* aHttp3Session);
|
|
|
|
void SetNegotiatedNPN(const nsACString& aValue);
|
|
void SetInfo(uint16_t aCipherSuite, uint16_t aProtocolVersion,
|
|
uint16_t aKeaGroup, uint16_t aSignatureScheme,
|
|
bool aEchAccepted);
|
|
|
|
void CallAuthenticated();
|
|
|
|
void HandshakeCompleted();
|
|
void SetCertVerificationResult(PRErrorCode errorCode) override;
|
|
|
|
NS_IMETHOD GetEchConfig(nsACString& aEchConfig) override;
|
|
NS_IMETHOD SetEchConfig(const nsACString& aEchConfig) override;
|
|
NS_IMETHOD GetRetryEchConfig(nsACString& aEchConfig) override;
|
|
void SetRetryEchConfig(const nsACString& aEchConfig);
|
|
bool IsBuiltCertChainRootBuiltInRoot() const;
|
|
|
|
private:
|
|
~QuicSocketControl() = default;
|
|
|
|
// For Authentication done callback and echConfig.
|
|
nsWeakPtr mHttp3Session;
|
|
|
|
nsCString mEchConfig;
|
|
nsCString mRetryEchConfig;
|
|
};
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // QuicSocketControl_h
|