summaryrefslogtreecommitdiffstats
path: root/ssl/tls1.h
diff options
context:
space:
mode:
authorRob Stradling <rob@comodo.com>2013-09-10 12:42:46 +0100
committerBen Laurie <ben@links.org>2013-10-04 14:55:01 +0100
commit020a4782bde95c4e2006c27bb715e67500957ffe (patch)
tree3568e5f6f2caa5864284f50a1165dcfea495d2c4 /ssl/tls1.h
parentcadbbd51c8b4e66515cd3e97754cfeda606c7b15 (diff)
Backport TLS 1.1/1.2 #defines
Diffstat (limited to 'ssl/tls1.h')
-rw-r--r--ssl/tls1.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/ssl/tls1.h b/ssl/tls1.h
index afe4807fa9..47f25afb1d 100644
--- a/ssl/tls1.h
+++ b/ssl/tls1.h
@@ -80,10 +80,24 @@ extern "C" {
#define TLS1_ALLOW_EXPERIMENTAL_CIPHERSUITES 0
+#define TLS1_2_VERSION 0x0303
+#define TLS1_2_VERSION_MAJOR 0x03
+#define TLS1_2_VERSION_MINOR 0x03
+
+#define TLS1_1_VERSION 0x0302
+#define TLS1_1_VERSION_MAJOR 0x03
+#define TLS1_1_VERSION_MINOR 0x02
+
#define TLS1_VERSION 0x0301
#define TLS1_VERSION_MAJOR 0x03
#define TLS1_VERSION_MINOR 0x01
+#define TLS1_get_version(s) \
+ ((s->version >> 8) == TLS1_VERSION_MAJOR ? s->version : 0)
+
+#define TLS1_get_client_version(s) \
+ ((s->client_version >> 8) == TLS1_VERSION_MAJOR ? s->client_version : 0)
+
#define TLS1_AD_DECRYPTION_FAILED 21
#define TLS1_AD_RECORD_OVERFLOW 22
#define TLS1_AD_UNKNOWN_CA 48 /* fatal */