diff options
author | lloyd <[email protected]> | 2012-01-20 14:28:37 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-01-20 14:28:37 +0000 |
commit | 27e2ba976a410d117b651541a42572d5743d41a0 (patch) | |
tree | 2cb04e3ca08d77ca842436db0805fa796e41dfad /src/tls/tls_messages.h | |
parent | 8756066f0e4319a0d4560202569ef3a8dad65006 (diff) |
Basic processing for signature_algorithms extension in client hello
Diffstat (limited to 'src/tls/tls_messages.h')
-rw-r--r-- | src/tls/tls_messages.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tls/tls_messages.h b/src/tls/tls_messages.h index d29e85f95..91a1a218f 100644 --- a/src/tls/tls_messages.h +++ b/src/tls/tls_messages.h @@ -112,6 +112,8 @@ class Client_Hello : public Handshake_Message size_t m_fragment_size; bool m_secure_renegotiation; MemoryVector<byte> m_renegotiation_info; + + std::vector<std::pair<TLS_Ciphersuite_Algos, TLS_Ciphersuite_Algos> > m_supported_algos; }; /** |