#include <tls_record.h>
Definition at line 103 of file tls_record.h.
Botan::TLS::Record_Message::Record_Message |
( |
const uint8_t * |
data, |
|
|
size_t |
size |
|
) |
| |
|
inline |
Definition at line 106 of file tls_record.h.
107 : m_type(0), m_sequence(0), m_data(data), m_size(size) {}
Botan::TLS::Record_Message::Record_Message |
( |
uint8_t |
type, |
|
|
uint64_t |
sequence, |
|
|
const uint8_t * |
data, |
|
|
size_t |
size |
|
) |
| |
|
inline |
Definition at line 108 of file tls_record.h.
109 : m_type(
type), m_sequence(sequence), m_data(data),
const uint8_t* Botan::TLS::Record_Message::get_data |
( |
| ) |
|
|
inline |
uint64_t& Botan::TLS::Record_Message::get_sequence |
( |
| ) |
|
|
inline |
size_t& Botan::TLS::Record_Message::get_size |
( |
| ) |
|
|
inline |
uint8_t& Botan::TLS::Record_Message::get_type |
( |
| ) |
|
|
inline |
The documentation for this class was generated from the following file: