diff options
author | lloyd <[email protected]> | 2012-03-20 21:32:48 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-03-20 21:32:48 +0000 |
commit | ff2154e7998b44aa242e55daeeb79c6d5ab9e5df (patch) | |
tree | ba1af7aaec56315a27c47b49d7c412754c4fde6b /src/tls/c_hello.cpp | |
parent | 9ecf7c11be659502e28407b7e5001d88cba763c2 (diff) |
Basic protocol message flow for session tickets
Diffstat (limited to 'src/tls/c_hello.cpp')
-rw-r--r-- | src/tls/c_hello.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/c_hello.cpp b/src/tls/c_hello.cpp index 712fde30c..df76c748f 100644 --- a/src/tls/c_hello.cpp +++ b/src/tls/c_hello.cpp @@ -71,8 +71,8 @@ Client_Hello::Client_Hello(Record_Writer& writer, m_next_protocol(next_protocol), m_fragment_size(0), m_secure_renegotiation(true), - m_supports_session_ticket(true), - m_renegotiation_info(reneg_info) + m_renegotiation_info(reneg_info), + m_supports_session_ticket(true) { std::vector<std::string> hashes = policy.allowed_hashes(); std::vector<std::string> sigs = policy.allowed_signature_methods(); |