diff options
author | lloyd <[email protected]> | 2012-01-23 17:41:12 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-01-23 17:41:12 +0000 |
commit | a12a50cc0eaf5113d2f0687f4c1d4be5ff820838 (patch) | |
tree | c800f3271e84e28e751c6ab30abdee21fc1b1acb /src/tls/tls_magic.h | |
parent | a445f7f4a1089fc034c35c500e1572eb9518f44f (diff) |
Make the version number a proper class, makes many things much easier
for such a minor change.
Diffstat (limited to 'src/tls/tls_magic.h')
-rw-r--r-- | src/tls/tls_magic.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/tls/tls_magic.h b/src/tls/tls_magic.h index 09919c26f..ebca860de 100644 --- a/src/tls/tls_magic.h +++ b/src/tls/tls_magic.h @@ -24,14 +24,6 @@ enum Size_Limits { MAX_TLS_RECORD_SIZE = MAX_CIPHERTEXT_SIZE + TLS_HEADER_SIZE, }; -enum Version_Code { - NO_VERSION_SET = 0x0000, - SSL_V3 = 0x0300, - TLS_V10 = 0x0301, - TLS_V11 = 0x0302, - TLS_V12 = 0x0303 -}; - enum Connection_Side { CLIENT = 1, SERVER = 2 }; enum Record_Type { |