Botan  1.11.15
Public Member Functions
Botan::TLS::Hello_Request Class Reference

#include <tls_messages.h>

Inheritance diagram for Botan::TLS::Hello_Request:
Botan::TLS::Handshake_Message

List of all members.

Public Member Functions

 Hello_Request (Handshake_IO &io)
 Hello_Request (const std::vector< byte > &buf)
Handshake_Type type () const override

Detailed Description

Hello Request Message

Definition at line 466 of file tls_messages.h.


Constructor & Destructor Documentation

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");
   }

Member Function Documentation

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; }

The documentation for this class was generated from the following files: