mirror of
https://github.com/boostorg/asio.git
synced 2026-02-01 08:02:08 +00:00
When synchronously or asynchronously accepting a new connection, but without specifying an executor or execution context, the accept operation will now correctly propagate the executor type from the acceptor to the socket. For example, if your acceptor type is: basic_socket_acceptor<ip::tcp, my_executor_type> then your accepted socket type will be: basic_stream_socket<ip::tcp, my_executor_type>