aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_channel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls/tls_channel.cpp')
-rw-r--r--src/tls/tls_channel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/tls_channel.cpp b/src/tls/tls_channel.cpp
index cb811278a..eea9edb74 100644
--- a/src/tls/tls_channel.cpp
+++ b/src/tls/tls_channel.cpp
@@ -25,10 +25,10 @@ Channel::Channel(std::function<void (const byte[], size_t)> output_fn,
Session_Manager& session_manager,
RandomNumberGenerator& rng) :
m_handshake_fn(handshake_complete),
- m_rng(rng),
- m_session_manager(session_manager),
m_proc_fn(proc_fn),
m_output_fn(output_fn),
+ m_rng(rng),
+ m_session_manager(session_manager),
m_writebuf(TLS_HEADER_SIZE + MAX_CIPHERTEXT_SIZE),
m_readbuf(TLS_HEADER_SIZE + MAX_CIPHERTEXT_SIZE)
{