diff options
-rw-r--r-- | src/tls/tls_client.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/tls/tls_client.cpp b/src/tls/tls_client.cpp index 6b4561cab..61156d71b 100644 --- a/src/tls/tls_client.cpp +++ b/src/tls/tls_client.cpp @@ -22,12 +22,10 @@ class Client_Handshake_State : public Handshake_State public: Client_Handshake_State(Handshake_IO* io) : Handshake_State(io) {} - secure_vector<byte> resume_master_secret; // FIXME make private + // Used during session resumption + secure_vector<byte> resume_master_secret; - /** - * Used by client using NPN - * FIXME make private - */ + // Used by client using NPN std::function<std::string (std::vector<std::string>)> client_npn_cb; }; |