diff options
author | lloyd <[email protected]> | 2012-09-06 14:39:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-09-06 14:39:35 +0000 |
commit | 244426e18fd6b0733f2c6cb530cc76f186b31ca8 (patch) | |
tree | 7991be0aa46649f30ad65a6f261040266e2581ad /src/tls/tls_server.cpp | |
parent | beef2ddf2347fbe04fa40cc115d0f080a3b878fd (diff) |
Hoist m_rng to Channel
Diffstat (limited to 'src/tls/tls_server.cpp')
-rw-r--r-- | src/tls/tls_server.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tls/tls_server.cpp b/src/tls/tls_server.cpp index 9aea56b1c..8303f9aaf 100644 --- a/src/tls/tls_server.cpp +++ b/src/tls/tls_server.cpp @@ -216,7 +216,6 @@ Server::Server(std::function<void (const byte[], size_t)> output_fn, const std::vector<std::string>& next_protocols) : Channel(output_fn, proc_fn, handshake_fn, session_manager, rng), m_policy(policy), - m_rng(rng), m_creds(creds), m_possible_protocols(next_protocols) { |