aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-05-24 14:17:55 -0400
committerJack Lloyd <[email protected]>2019-05-24 14:17:55 -0400
commitbb8c2b138898fb49b36157779f3b2a05dd5bba90 (patch)
tree710d7f2fe5711cebf3da8ee78bb2f6905ddf9c25 /src/tests
parenta6f271f638a20a619be8e840001ff83112506c40 (diff)
Let TLS serialization know which side we are sending as
Since this matters for some extensions
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/unit_tls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/unit_tls.cpp b/src/tests/unit_tls.cpp
index e42cd6a4a..34c25e9ef 100644
--- a/src/tests/unit_tls.cpp
+++ b/src/tests/unit_tls.cpp
@@ -335,7 +335,7 @@ class TLS_Handshake_Test final
Botan::TLS::Handshake_Extension_Type type() const override { return static_type(); }
- std::vector<uint8_t> serialize() const override { return m_buf; }
+ std::vector<uint8_t> serialize(Botan::TLS::Connection_Side) const override { return m_buf; }
const std::vector<uint8_t>& value() const { return m_buf; }