blob: 4afd79d2d04da2dc40161075393f23136f1878ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* -*- 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 CommonSocketControl_h
#define CommonSocketControl_h
#include "nsISSLSocketControl.h"
#include "TransportSecurityInfo.h"
class CommonSocketControl : public mozilla::psm::TransportSecurityInfo,
public nsISSLSocketControl {
public:
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_NSISSLSOCKETCONTROL
explicit CommonSocketControl(uint32_t providerFlags);
uint32_t GetProviderFlags() const { return mProviderFlags; }
void SetSSLVersionUsed(int16_t version) { mSSLVersionUsed = version; }
void RebuildCertificateInfoFromSSLTokenCache();
protected:
~CommonSocketControl() = default;
bool mHandshakeCompleted;
bool mJoined;
bool mSentClientCert;
bool mFailedVerification;
uint16_t mSSLVersionUsed;
uint32_t mProviderFlags;
};
#endif // CommonSocketControl_h
|