You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
vinniefalco
changed the title
get_io_context() deprecation makes ssl::stream construction impossible
get_io_context() deprecation makes ssl::stream construction from moved socket impossible
Sep 10, 2017
This is a specific case of a general problem. You can't construct a new socket that uses the io_context of an existing socket without calling get_io_context, which is deprecated. And there is no socket constructor which accepts an io_context::executor_type.
The following behavior cannot be implemented without using deprecated interfaces:
The text was updated successfully, but these errors were encountered: