diff options
author | Jack Lloyd <[email protected]> | 2019-05-24 18:44:31 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-05-24 18:44:31 -0400 |
commit | ed8598b3304e310be1b95f8db97edf4f67f1b019 (patch) | |
tree | b0b35c7663cd74c0e2e0dc00b387855a14be1f37 | |
parent | 5941fd903c6dca738193327940fe04393b756ab5 (diff) |
Remove bogus comment
-rw-r--r-- | src/lib/tls/tls_client.cpp | 1 | ||||
-rw-r--r-- | src/lib/tls/tls_extensions.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/tls/tls_client.cpp b/src/lib/tls/tls_client.cpp index eb6d21b14..82991d8fc 100644 --- a/src/lib/tls/tls_client.cpp +++ b/src/lib/tls/tls_client.cpp @@ -235,7 +235,6 @@ void Client::process_handshake_msg(const Handshake_State* active_state, { Hello_Request hello_request(contents); - // Ignore request entirely if we are currently negotiating a handshake if(state.client_hello()) { throw TLS_Exception(Alert::HANDSHAKE_FAILURE, "Cannot renegotiate during a handshake"); diff --git a/src/lib/tls/tls_extensions.h b/src/lib/tls/tls_extensions.h index 76d072763..686aaad5d 100644 --- a/src/lib/tls/tls_extensions.h +++ b/src/lib/tls/tls_extensions.h @@ -483,7 +483,6 @@ class BOTAN_UNSTABLE_API Unknown_Extension final : public Extension private: Handshake_Extension_Type m_type; std::vector<uint8_t> m_value; - }; /** |