aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/rec_wri.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-12-27 20:33:49 +0000
committerlloyd <[email protected]>2011-12-27 20:33:49 +0000
commit065187289ea2c47f507b99a429dcf62a19d48f30 (patch)
tree7735059a428794f317489960d5e9f5afebde4631 /src/tls/rec_wri.cpp
parent1bfd053969280ee6228f5579b2e2f1ff3cbcf0a5 (diff)
Make tls_session_key.h an internal header
Diffstat (limited to 'src/tls/rec_wri.cpp')
-rw-r--r--src/tls/rec_wri.cpp6
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();