diff options
author | lloyd <[email protected]> | 2012-03-07 01:24:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-03-07 01:24:19 +0000 |
commit | 7371f7c59ae722769fbc0dc810583a0cd0e38877 (patch) | |
tree | 6270901abc28e8f436d8f6cf119e20d74861b622 /src/tls/c_hello.cpp | |
parent | 4e427ceb1518e3a0fb978717a4ec0c7d174b68d5 (diff) |
Add SecureQueue::empty
Hide the handshake reader behind a function.
Add pieces for DTLS hello verify request message
Diffstat (limited to 'src/tls/c_hello.cpp')
-rw-r--r-- | src/tls/c_hello.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/c_hello.cpp b/src/tls/c_hello.cpp index 59e0670df..35389f37b 100644 --- a/src/tls/c_hello.cpp +++ b/src/tls/c_hello.cpp @@ -40,7 +40,7 @@ Hello_Request::Hello_Request(Record_Writer& writer) Hello_Request::Hello_Request(const MemoryRegion<byte>& buf) { if(buf.size()) - throw Decoding_Error("Hello_Request: Must be empty, and is not"); + throw Decoding_Error("Bad Hello_Request, has non-zero size"); } /* |