From 4371791977a18653da16a99f41de46cee5fa337b Mon Sep 17 00:00:00 2001 From: xiphon Date: Tue, 17 Sep 2019 22:19:48 +0000 Subject: epee: implement handshake timeout for SSL connections --- contrib/epee/include/net/net_ssl.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'contrib/epee/include/net/net_ssl.h') diff --git a/contrib/epee/include/net/net_ssl.h b/contrib/epee/include/net/net_ssl.h index 3a97dfdaf..d2c1c1a3a 100644 --- a/contrib/epee/include/net/net_ssl.h +++ b/contrib/epee/include/net/net_ssl.h @@ -128,7 +128,11 @@ namespace net_utils \return True if the SSL handshake completes with peer verification settings. */ - bool handshake(boost::asio::ssl::stream &socket, boost::asio::ssl::stream_base::handshake_type type, const std::string& host = {}) const; + bool handshake( + boost::asio::ssl::stream &socket, + boost::asio::ssl::stream_base::handshake_type type, + const std::string& host = {}, + std::chrono::milliseconds timeout = std::chrono::seconds(15)) const; }; // https://security.stackexchange.com/questions/34780/checking-client-hello-for-https-classification -- cgit v1.2.3