qssl.h - address comments from API review
Enumerators initially were to be flags, but this changed later, no initialisers needed now. Pick-to: dev Change-Id: I72b24f979e207e21d6f42a11cf0ae8887df473d3 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
parent
0352cf8e1b
commit
b677883263
@ -151,23 +151,23 @@ namespace QSsl {
|
|||||||
|
|
||||||
enum class ImplementedClass
|
enum class ImplementedClass
|
||||||
{
|
{
|
||||||
Key = 0x1,
|
Key,
|
||||||
Certificate = 0x2,
|
Certificate,
|
||||||
Socket = 0x4,
|
Socket,
|
||||||
DiffieHellman = 0x8,
|
DiffieHellman,
|
||||||
EllipticCurve = 0x10,
|
EllipticCurve,
|
||||||
Dtls = 0x20
|
Dtls
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class SupportedFeature
|
enum class SupportedFeature
|
||||||
{
|
{
|
||||||
CertificateVerification = 0x1,
|
CertificateVerification,
|
||||||
ClientSideAlpn = 0x2,
|
ClientSideAlpn,
|
||||||
ServerSideAlpn = 0x4,
|
ServerSideAlpn,
|
||||||
Ocsp = 0x8,
|
Ocsp,
|
||||||
Psk = 0x10,
|
Psk,
|
||||||
SessionTicket = 0x20,
|
SessionTicket,
|
||||||
Alerts = 040
|
Alerts
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user