gecko-dev/netwerk/protocol/http/QuicSocketControl.h
Kershaw Chang 750f73dbb2 Bug 1596409 - P1.2: Create PHttpTransaction IPC protocol r=dragana
Differential Revision: https://phabricator.services.mozilla.com/D54290

--HG--
extra : moz-landing-system : lando
2019-12-03 13:42:15 +00:00

59 lines
1.7 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_DECLARE_STATIC_IID_ACCESSOR(NS_QUICSOCKETCONTROL_IID)
NS_DECL_ISUPPORTS_INHERITED
NS_IMETHOD GetSSLVersionOffered(int16_t* aSSLVersionOffered) override;
explicit QuicSocketControl(uint32_t providerFlags);
void SetNegotiatedNPN(const nsACString& aValue);
void SetInfo(uint16_t aCipherSuite, uint16_t aProtocolVersion,
uint16_t aKeaGroup, uint16_t aSignatureScheme);
void SetAuthenticationCallback(Http3Session* aHttp3Session);
void CallAuthenticated();
void HandshakeCompleted();
void SetCertVerificationResult(PRErrorCode errorCode) override;
private:
~QuicSocketControl() = default;
// For Authentication done callback.
nsWeakPtr mHttp3Session;
};
NS_DEFINE_STATIC_IID_ACCESSOR(QuicSocketControl, NS_QUICSOCKETCONTROL_IID)
} // namespace net
} // namespace mozilla
#endif // QuicSocketControl_h