diff options
Diffstat (limited to 'src/tls/tls_client.h')
-rw-r--r-- | src/tls/tls_client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tls/tls_client.h b/src/tls/tls_client.h index 0baaa6a60..3edcfa495 100644 --- a/src/tls/tls_client.h +++ b/src/tls/tls_client.h @@ -66,6 +66,9 @@ class BOTAN_DLL Client : public Channel std::function<std::string (std::vector<std::string>)> next_protocol = std::function<std::string (std::vector<std::string>)>()); private: + std::vector<X509_Certificate> + get_peer_cert_chain(const Handshake_State& state) const override; + void initiate_handshake(Handshake_State& state, bool force_full_renegotiation) override; |