aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-08-06 14:59:18 +0000
committerlloyd <[email protected]>2012-08-06 14:59:18 +0000
commit45f6afea689eba9a1d3cc3703c2b4250495d4b96 (patch)
treececf78c291384447c744f323dabd6fc9b702d702 /src/tls
parent7d05288ae1a808f06dc683c7d649e508caff7e7d (diff)
Don't need to make these private
Diffstat (limited to 'src/tls')
-rw-r--r--src/tls/tls_client.cpp8
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;
};