aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/msg_client_hello.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-04-12 13:41:13 +0000
committerlloyd <[email protected]>2014-04-12 13:41:13 +0000
commit4d72d7344018e97d672956e5292e23c88e1f7f1f (patch)
treecf18bc2d23ae019f804356b6dff762e345d70043 /src/lib/tls/msg_client_hello.cpp
parentb971432dc88eca599214bf0a40219d3263d1abf2 (diff)
Have TLS_Data_Reader decoding errors include the actual msg type name
Diffstat (limited to 'src/lib/tls/msg_client_hello.cpp')
-rw-r--r--src/lib/tls/msg_client_hello.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/msg_client_hello.cpp b/src/lib/tls/msg_client_hello.cpp
index 0d91af472..087fefcb4 100644
--- a/src/lib/tls/msg_client_hello.cpp
+++ b/src/lib/tls/msg_client_hello.cpp
@@ -235,7 +235,7 @@ void Client_Hello::deserialize(const std::vector<byte>& buf)
if(buf.size() < 41)
throw Decoding_Error("Client_Hello: Packet corrupted");
- TLS_Data_Reader reader(buf);
+ TLS_Data_Reader reader("ClientHello", buf);
const byte major_version = reader.get_byte();
const byte minor_version = reader.get_byte();