aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/rec_read.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-01-20 16:04:08 +0000
committerlloyd <[email protected]>2012-01-20 16:04:08 +0000
commitb9980348ccd1687f44f53532f81c605aa4a1d752 (patch)
treeb4dc2953441827e1d670a886a9d6d6f5c30bf127 /src/tls/rec_read.cpp
parent27e2ba976a410d117b651541a42572d5743d41a0 (diff)
TLS_Ciphersuite_Algos was just a strange level of indirection between
the ciphersuite code and a set of strings specifying the underlying suite algorithms. Remove it entirely. Some things are likely broken. One I know about is that we always send the hash/signature type indicator but should only do so for TLS >= 1.2
Diffstat (limited to 'src/tls/rec_read.cpp')
-rw-r--r--src/tls/rec_read.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/rec_read.cpp b/src/tls/rec_read.cpp
index 2376dfd2b..d3666abf6 100644
--- a/src/tls/rec_read.cpp
+++ b/src/tls/rec_read.cpp
@@ -64,7 +64,7 @@ void Record_Reader::set_version(Version_Code version)
/*
* Set the keys for reading
*/
-void Record_Reader::activate(const TLS_Cipher_Suite& suite,
+void Record_Reader::activate(const TLS_Ciphersuite& suite,
const Session_Keys& keys,
Connection_Side side)
{