diff options
author | Jack Lloyd <[email protected]> | 2016-02-07 02:58:41 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-02-07 02:58:41 -0500 |
commit | e23cfdeb6d079a2c8d147142f31934d2c8b3a881 (patch) | |
tree | 33a26385dbc5af02940ac5f4682c8b4b508cb6c1 /src/lib/tls/tls_session.h | |
parent | ceb90fb9814d5118d406efcbcda2117b6b083ad4 (diff) |
Remove support for the TLS min fragment length extension.
Diffstat (limited to 'src/lib/tls/tls_session.h')
-rw-r--r-- | src/lib/tls/tls_session.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/lib/tls/tls_session.h b/src/lib/tls/tls_session.h index f38ca8e27..0e22037f6 100644 --- a/src/lib/tls/tls_session.h +++ b/src/lib/tls/tls_session.h @@ -38,8 +38,7 @@ class BOTAN_DLL Session m_compression_method(0), m_connection_side(static_cast<Connection_Side>(0)), m_srtp_profile(0), - m_extended_master_secret(false), - m_fragment_size(0) + m_extended_master_secret(false) {} /** @@ -51,7 +50,6 @@ class BOTAN_DLL Session u16bit ciphersuite, byte compression_method, Connection_Side side, - size_t fragment_size, bool supports_extended_master_secret, const std::vector<X509_Certificate>& peer_certs, const std::vector<byte>& session_ticket, @@ -153,11 +151,6 @@ class BOTAN_DLL Session const std::vector<byte>& session_id() const { return m_identifier; } /** - * Get the negotiated maximum fragment size (or 0 if default) - */ - size_t fragment_size() const { return m_fragment_size; } - - /** * Get the negotiated DTLS-SRTP algorithm (RFC 5764) */ u16bit dtls_srtp_profile() const { return m_srtp_profile; } @@ -202,8 +195,6 @@ class BOTAN_DLL Session u16bit m_srtp_profile; bool m_extended_master_secret; - size_t m_fragment_size; - std::vector<X509_Certificate> m_peer_certs; Server_Information m_server_info; // optional std::string m_srp_identifier; // optional |