diff options
author | lloyd <[email protected]> | 2012-09-04 21:03:30 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-09-04 21:03:30 +0000 |
commit | fdcf9fb3dd5fc850cbbbdb94163af0d395ffabaf (patch) | |
tree | e528fadeeed9d799d442857ed7e6cad1382190c6 /src/tls/tls_handshake_io.h | |
parent | e2d844d3dbea46a54a86a03126772956b715b9c9 (diff) |
Rename m_writer to m_send_hs
Diffstat (limited to 'src/tls/tls_handshake_io.h')
-rw-r--r-- | src/tls/tls_handshake_io.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tls/tls_handshake_io.h b/src/tls/tls_handshake_io.h index 9ff580cf8..b026d4160 100644 --- a/src/tls/tls_handshake_io.h +++ b/src/tls/tls_handshake_io.h @@ -67,7 +67,7 @@ class Stream_Handshake_IO : public Handshake_IO { public: Stream_Handshake_IO(handshake_write_fn writer) : - m_writer(writer) {} + m_send_hs(writer) {} Protocol_Version initial_record_version() const override; @@ -86,7 +86,7 @@ class Stream_Handshake_IO : public Handshake_IO get_next_record(bool expecting_ccs) override; private: std::deque<byte> m_queue; - handshake_write_fn m_writer; + handshake_write_fn m_send_hs; }; /** @@ -96,7 +96,7 @@ class Datagram_Handshake_IO : public Handshake_IO { public: Datagram_Handshake_IO(handshake_write_fn writer, u16bit mtu) : - m_flights(1), m_mtu(mtu), m_writer(writer) {} + m_flights(1), m_mtu(mtu), m_send_hs(writer) {} Protocol_Version initial_record_version() const override; @@ -158,7 +158,7 @@ class Datagram_Handshake_IO : public Handshake_IO u16bit m_mtu = 0; u16bit m_in_message_seq = 0; u16bit m_out_message_seq = 0; - handshake_write_fn m_writer; + handshake_write_fn m_send_hs; }; } |