diff options
author | lloyd <[email protected]> | 2012-03-19 12:30:56 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-03-19 12:30:56 +0000 |
commit | 9ecf7c11be659502e28407b7e5001d88cba763c2 (patch) | |
tree | 9b45f3e9b90587e43fd62a2dbf0812a9c9663ab2 /src/tls/c_hello.cpp | |
parent | b1238320b591bced237ab08bd32713c59d18525a (diff) |
Small fixes, cleanups
Diffstat (limited to 'src/tls/c_hello.cpp')
-rw-r--r-- | src/tls/c_hello.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tls/c_hello.cpp b/src/tls/c_hello.cpp index 1d02986ac..712fde30c 100644 --- a/src/tls/c_hello.cpp +++ b/src/tls/c_hello.cpp @@ -159,6 +159,7 @@ MemoryVector<byte> Client_Hello::serialize() const extensions.add(new Server_Name_Indicator(m_hostname)); extensions.add(new SRP_Identifier(m_srp_identifier)); extensions.add(new Supported_Elliptic_Curves(m_supported_curves)); + extensions.add(new Session_Ticket()); if(m_version >= Protocol_Version::TLS_V12) extensions.add(new Signature_Algorithms(m_supported_algos)); |