Botan
1.11.15
|
#include <tls_messages.h>
Public Member Functions | |
Hello_Request (Handshake_IO &io) | |
Hello_Request (const std::vector< byte > &buf) | |
Handshake_Type | type () const override |
Hello Request Message
Definition at line 466 of file tls_messages.h.
Definition at line 44 of file msg_client_hello.cpp.
References Botan::TLS::Handshake_IO::send().
{
io.send(*this);
}
Botan::TLS::Hello_Request::Hello_Request | ( | const std::vector< byte > & | buf | ) |
Definition at line 52 of file msg_client_hello.cpp.
{ if(buf.size()) throw Decoding_Error("Bad Hello_Request, has non-zero size"); }
Handshake_Type Botan::TLS::Hello_Request::type | ( | ) | const [inline, override, virtual] |
Implements Botan::TLS::Handshake_Message.
Definition at line 469 of file tls_messages.h.
References Botan::TLS::HELLO_REQUEST.
{ return HELLO_REQUEST; }