AppleTLS: correctly define kTLSProtocol13

This commit is contained in:
Nils Maier 2019-10-06 13:21:48 +02:00
parent 1677aba1b2
commit a184ceb9e2

View File

@ -55,7 +55,10 @@ namespace {
#if !defined(__MAC_10_8) #if !defined(__MAC_10_8)
static const SSLProtocol kTLSProtocol11 = 7; static const SSLProtocol kTLSProtocol11 = 7;
static const SSLProtocol kTLSProtocol12 = 8; static const SSLProtocol kTLSProtocol12 = 8;
static const SSLProtocol kTLSProtocol13 = 13; #endif
#if !defined(__MAC_10_13)
static const SSLProtocol kTLSProtocol13 = 10;
#endif #endif
#ifndef CIPHER_NO_DHPARAM #ifndef CIPHER_NO_DHPARAM