Quite new to boost and asio, need help:
connect to proxy
asio::ip::tcp::socket socket_;send CONNECT host: ssl server to the proxy
receive response 200asio::ssl::context ctx(io_service, asio::ssl::context::sslv23);sslsocket_(socket_,context)try handshake
sslsocket_.async_handshake(asio::ssl::stream_base::client, boost::bind(&client::handle_handshake, this, asio::placeholders::error));and get asio.ssl error
Wireshark: host sends FIN after 1st message of handshake
Direct async connection to ssl server works fine, same through Proxifier