diff options
author | lloyd <[email protected]> | 2012-08-10 12:38:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-08-10 12:38:00 +0000 |
commit | 52de604c02536ef2724aa99632bf50efa9d09294 (patch) | |
tree | e48c58145787cabb1c202f2d0c4311cab86de2e4 /src/tls/tls_record.h | |
parent | 7afc5cac372093e211edc90bfe6533270275d8f9 (diff) |
Make the CCS message a Handshake_Msg and send it through the handshake
IO layer. Needed for DTLS which needs to be able to track and
retransmit the CCS if needed.
Diffstat (limited to 'src/tls/tls_record.h')
-rw-r--r-- | src/tls/tls_record.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tls/tls_record.h b/src/tls/tls_record.h index 820de0958..5de17033a 100644 --- a/src/tls/tls_record.h +++ b/src/tls/tls_record.h @@ -32,8 +32,6 @@ class BOTAN_DLL Record_Writer public: void send(byte type, const byte input[], size_t length); - void send(byte type, byte val) { send(type, &val, 1); } - void send(byte type, const std::vector<byte>& input) { send(type, &input[0], input.size()); } |