diff options
author | lloyd <[email protected]> | 2012-08-06 12:42:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-08-06 12:42:01 +0000 |
commit | 55285c8e3ffcd78d4f9bc543648eb215205b3ae7 (patch) | |
tree | 8a888dbab4891915857132d9ced0bed39e16c90c /src/tls/tls_handshake_state.h | |
parent | 43c8e8cc60d1b58a715c81d985f3419548d485ed (diff) |
Move server-specific parts of the handshake state to a server subclass.
Diffstat (limited to 'src/tls/tls_handshake_state.h')
-rw-r--r-- | src/tls/tls_handshake_state.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/tls/tls_handshake_state.h b/src/tls/tls_handshake_state.h index 6710e1ce6..d0a03e2d9 100644 --- a/src/tls/tls_handshake_state.h +++ b/src/tls/tls_handshake_state.h @@ -13,7 +13,6 @@ #include <botan/internal/tls_session_key.h> #include <botan/pk_keys.h> #include <botan/pubkey.h> - #include <functional> #include <utility> #include <memory> @@ -147,15 +146,6 @@ class Handshake_State const Handshake_Hash& hash() const { return m_handshake_hash; } - // Used by the server only, in case of RSA key exchange - Private_Key* server_rsa_kex_key = nullptr; // FIXME make private - - /* - * Used by the server to know if resumption should be allowed on - * a server-initiated renegotiation - */ - bool allow_session_resumption = true; // FIXME make private - private: std::unique_ptr<Handshake_IO> m_handshake_io; |