diff options
author | lloyd <[email protected]> | 2012-03-30 01:41:04 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-03-30 01:41:04 +0000 |
commit | 4ff6063a9605c71cc734a594ddecbdb0d17541bf (patch) | |
tree | 845fa57d5f9e24fc39f5fa847296e4b778e6a894 /src/tls/tls_record.h | |
parent | 8a31da4d60490753031267b18957c0c599bbee3b (diff) | |
parent | 4c12fa5de1b59f2c58f974412231a19c4dc7c10f (diff) |
propagate from branch 'net.randombit.botan.tls-state-machine' (head 63b88a65b699c95ef839bc18336bceccfbfabd2e)
to branch 'net.randombit.botan.cxx11' (head 1adcc46808b403b8f6bf1669f022e65f9c30e8ea)
Diffstat (limited to 'src/tls/tls_record.h')
-rw-r--r-- | src/tls/tls_record.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tls/tls_record.h b/src/tls/tls_record.h index 6634810df..b966e3c72 100644 --- a/src/tls/tls_record.h +++ b/src/tls/tls_record.h @@ -33,6 +33,8 @@ class BOTAN_DLL Record_Writer void send(byte type, const byte input[], size_t length); void send(byte type, byte val) { send(type, &val, 1); } + MemoryVector<byte> send(class Handshake_Message& msg); + void send_alert(const Alert& alert); void activate(Connection_Side side, |