diff options
author | Jack Lloyd <[email protected]> | 2016-08-31 11:47:07 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-08-31 11:47:07 -0400 |
commit | 1b9cf39063194fe91dc8e5d78f73d7251c5d16fc (patch) | |
tree | 0d1c46ca8825b6ff56a23beeaf80146b807c79a4 /src/cli | |
parent | de8f1f39e72d3294adcc91dcf61d63fe0477d6f4 (diff) |
Maintainer mode fixes
Diffstat (limited to 'src/cli')
-rw-r--r-- | src/cli/tls_client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/tls_client.cpp b/src/cli/tls_client.cpp index 137fdfdbd..caf7d4a1f 100644 --- a/src/cli/tls_client.cpp +++ b/src/cli/tls_client.cpp @@ -305,12 +305,12 @@ class TLS_Client final : public Command, public Botan::TLS::Callbacks } } - void tls_alert(Botan::TLS::Alert alert) + void tls_alert(Botan::TLS::Alert alert) override { output() << "Alert: " << alert.type_string() << "\n"; } - void tls_record_received(uint64_t /*seq_no*/, const uint8_t buf[], size_t buf_size) + void tls_record_received(uint64_t /*seq_no*/, const uint8_t buf[], size_t buf_size) override { for(size_t i = 0; i != buf_size; ++i) output() << buf[i]; |