2
0
mirror of https://github.com/boostorg/asio.git synced 2026-02-01 08:02:08 +00:00
Files
asio/include
Christopher Kohlhoff 7b0b56b702 Ensure the executor type is propagated to newly accepted sockets.
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>
2019-10-30 20:53:18 +11:00
..