aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/tls_record.h
diff options
context:
space:
mode:
authorTomasz Frydrych <[email protected]>2017-04-02 22:24:31 +0200
committerTomasz Frydrych <[email protected]>2017-04-03 23:42:29 +0200
commitfbef72e11c483fae16c32480cf84253a56d0ee25 (patch)
tree200b0fe290e9809ef6c8883e886b7c9a48c902a1 /src/lib/tls/tls_record.h
parent753b4c2d5301574d3c9390b79aa275a49809e6c8 (diff)
Content:
* fixes for deprecated constructions in c++11 and later (explicit rule of 3/5 or implicit rule of 0 and other violations) * `default` specifier instead of `{}` in some places(probably all) * removal of unreachable code (for example `return` after `throw`) * removal of compilation unit only visible, but not used functions * fix for `throw()` specifier - used instead `BOTAN_NOEXCEPT` * removed not needed semicolons
Diffstat (limited to 'src/lib/tls/tls_record.h')
-rw-r--r--src/lib/tls/tls_record.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/tls/tls_record.h b/src/lib/tls/tls_record.h
index ebb83c484..782257b41 100644
--- a/src/lib/tls/tls_record.h
+++ b/src/lib/tls/tls_record.h
@@ -80,7 +80,7 @@ class Record
Protocol_Version* protocol_version,
Record_Type* type)
: m_data(data), m_sequence(sequence), m_protocol_version(protocol_version),
- m_type(type), m_size(data.size()) {};
+ m_type(type), m_size(data.size()) {}
secure_vector<uint8_t>& get_data() { return m_data; }
@@ -104,15 +104,15 @@ class Record_Message
{
public:
Record_Message(const uint8_t* data, size_t size)
- : m_type(0), m_sequence(0), m_data(data), m_size(size) {};
+ : m_type(0), m_sequence(0), m_data(data), m_size(size) {}
Record_Message(uint8_t type, uint64_t sequence, const uint8_t* data, size_t size)
: m_type(type), m_sequence(sequence), m_data(data),
- m_size(size) {};
+ m_size(size) {}
- uint8_t& get_type() { return m_type; };
- uint64_t& get_sequence() { return m_sequence; };
- const uint8_t* get_data() { return m_data; };
- size_t& get_size() { return m_size; };
+ uint8_t& get_type() { return m_type; }
+ uint64_t& get_sequence() { return m_sequence; }
+ const uint8_t* get_data() { return m_data; }
+ size_t& get_size() { return m_size; }
private:
uint8_t m_type;
@@ -127,16 +127,16 @@ class Record_Raw_Input
Record_Raw_Input(const uint8_t* data, size_t size, size_t& consumed,
bool is_datagram)
: m_data(data), m_size(size), m_consumed(consumed),
- m_is_datagram(is_datagram) {};
+ m_is_datagram(is_datagram) {}
- const uint8_t*& get_data() { return m_data; };
+ const uint8_t*& get_data() { return m_data; }
- size_t& get_size() { return m_size; };
+ size_t& get_size() { return m_size; }
- size_t& get_consumed() { return m_consumed; };
+ size_t& get_consumed() { return m_consumed; }
void set_consumed(size_t consumed) { m_consumed = consumed; }
- bool is_datagram() { return m_is_datagram; };
+ bool is_datagram() { return m_is_datagram; }
private:
const uint8_t* m_data;