diff options
author | Jack Lloyd <[email protected]> | 2018-01-07 16:48:07 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-01-27 09:43:13 -0500 |
commit | 936da0514b06b341e6fab372477e32c90df05d57 (patch) | |
tree | 0b5b87ae056c8efe8c3f4e1a63075b546bae329a /src/lib/tls/tls_callbacks.cpp | |
parent | cfe57137e5957b84b6b749db8d9f02c3ee1f8c1e (diff) |
Add ability for application to control which TLS extensions are used
GH #1186
Diffstat (limited to 'src/lib/tls/tls_callbacks.cpp')
-rw-r--r-- | src/lib/tls/tls_callbacks.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/tls/tls_callbacks.cpp b/src/lib/tls/tls_callbacks.cpp index b8f38589e..b13aa2406 100644 --- a/src/lib/tls/tls_callbacks.cpp +++ b/src/lib/tls/tls_callbacks.cpp @@ -32,6 +32,10 @@ std::string TLS::Callbacks::tls_server_choose_app_protocol(const std::vector<std return ""; } +void TLS::Callbacks::tls_modify_extensions(Extensions&) + { + } + void TLS::Callbacks::tls_verify_cert_chain( const std::vector<X509_Certificate>& cert_chain, const std::vector<std::shared_ptr<const OCSP::Response>>& ocsp_responses, |