commit | 238b63613bae5c369fd85951bea5cbfa0fdfa35c | [log] [tgz] |
---|---|---|
author | Dr. Stephen Henson <steve@openssl.org> | Wed May 25 11:43:07 2011 +0000 |
committer | Dr. Stephen Henson <steve@openssl.org> | Wed May 25 11:43:07 2011 +0000 |
tree | 894fb9c9078045e1ff122df3e9162bd4586c179d | |
parent | 87f6b97e8906491275cc7d3db1992337e7847aac [diff] [blame] |
use TLS1_get_version macro to check version so TLS v1.2 changes don't interfere with DTLS
diff --git a/ssl/tls1.h b/ssl/tls1.h index 35efebe..f8d2fda 100644 --- a/ssl/tls1.h +++ b/ssl/tls1.h
@@ -171,6 +171,9 @@ #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_AD_DECRYPTION_FAILED 21 #define TLS1_AD_RECORD_OVERFLOW 22 #define TLS1_AD_UNKNOWN_CA 48 /* fatal */