aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/next_protocol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls/next_protocol.cpp')
-rw-r--r--src/tls/next_protocol.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tls/next_protocol.cpp b/src/tls/next_protocol.cpp
index 17b77fb6e..adf9acbe9 100644
--- a/src/tls/next_protocol.cpp
+++ b/src/tls/next_protocol.cpp
@@ -22,7 +22,7 @@ Next_Protocol::Next_Protocol(Record_Writer& writer,
hash.update(writer.send(*this));
}
-Next_Protocol::Next_Protocol(const MemoryRegion<byte>& buf)
+Next_Protocol::Next_Protocol(const std::vector<byte>& buf)
{
TLS_Data_Reader reader(buf);
@@ -31,9 +31,9 @@ Next_Protocol::Next_Protocol(const MemoryRegion<byte>& buf)
reader.get_range_vector<byte>(1, 0, 255); // padding, ignored
}
-MemoryVector<byte> Next_Protocol::serialize() const
+std::vector<byte> Next_Protocol::serialize() const
{
- MemoryVector<byte> buf;
+ std::vector<byte> buf;
append_tls_length_value(buf,
reinterpret_cast<const byte*>(m_protocol.data()),