id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 10898,Variadic constructor for ssl::stream so it can wrap streams whose constructors take n arguments,Joseph Southwell ,chris_kohlhoff,"I have specific use case ( passing through a proxy ) where I need to wrap an ssl stream in an ssl stream. This becomes possible if I change the constructor for ssl stream as follows. {{{ #!cpp template stream(context& ctx, Arg&& ...arg) : next_layer_(std::forward(arg)...), core_(ctx.native_handle(), next_layer_.lowest_layer().get_io_service()) { backwards_compatible_impl_.ssl = core_.engine_.native_handle(); } }}}}",Feature Requests,new,To Be Determined,asio,Boost 1.57.0,Problem,,asio ssl c++11,