diff options
author | lloyd <[email protected]> | 2011-12-27 20:33:49 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-12-27 20:33:49 +0000 |
commit | 065187289ea2c47f507b99a429dcf62a19d48f30 (patch) | |
tree | 7735059a428794f317489960d5e9f5afebde4631 /src/tls/rec_wri.cpp | |
parent | 1bfd053969280ee6228f5579b2e2f1ff3cbcf0a5 (diff) |
Make tls_session_key.h an internal header
Diffstat (limited to 'src/tls/rec_wri.cpp')
-rw-r--r-- | src/tls/rec_wri.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tls/rec_wri.cpp b/src/tls/rec_wri.cpp index d3a5c13f7..b1edde64b 100644 --- a/src/tls/rec_wri.cpp +++ b/src/tls/rec_wri.cpp @@ -1,11 +1,12 @@ /* * TLS Record Writing -* (C) 2004-2010 Jack Lloyd +* (C) 2004-2011 Jack Lloyd * * Released under the terms of the Botan license */ #include <botan/tls_record.h> +#include <botan/internal/tls_session_key.h> #include <botan/internal/tls_handshake_hash.h> #include <botan/lookup.h> #include <botan/loadstor.h> @@ -60,7 +61,8 @@ void Record_Writer::set_version(Version_Code version) /** * Set the keys for writing */ -void Record_Writer::set_keys(const CipherSuite& suite, const SessionKeys& keys, +void Record_Writer::set_keys(const CipherSuite& suite, + const SessionKeys& keys, Connection_Side side) { cipher.reset(); |