passenger 6.0.14 → 6.0.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +28 -1
- data/CONTRIBUTORS +2 -0
- data/build/common_library.rb +1 -0
- data/src/agent/Core/Config.h +1 -1
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +24 -2
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/agent/Watchdog/WatchdogMain.cpp +4 -0
- data/src/cxx_supportlib/BackgroundEventLoop.cpp +4 -0
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/LoggingKit/Context.h +1 -1
- data/src/cxx_supportlib/SafeLibev.h +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_iterator.hpp +11 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_iterator.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_sunos.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +42 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +363 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +208 -115
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +28 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +831 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +703 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +210 -117
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +84 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +123 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +36 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +58 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +303 -150
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +756 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +153 -84
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +28 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +633 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +724 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +11 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +36 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +222 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +38 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +34 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +38 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +10 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +33 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +682 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +132 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +128 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +677 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +192 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bulk_executor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +233 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +38 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +42 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +330 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +13 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +207 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +882 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +251 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/{reactive_serial_port_service.ipp → posix_serial_port_service.ipp} +38 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +36 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +108 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +126 -121
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +189 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +681 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +188 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +184 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +264 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +115 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +320 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +204 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +205 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +191 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +633 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +665 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +9 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/{reactive_serial_port_service.hpp → posix_serial_port_service.hpp} +30 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +12 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +29 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +41 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +29 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +16 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +57 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +37 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +9 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +126 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_invocable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_receiver.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/bulk_sender.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/submit_receiver.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/void_receiver.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/receiver_invocation_error.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver_invocation_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +100 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +6 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +6 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +493 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +493 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +233 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +189 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +95 -887
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/{detail/coro_traits.hpp → coro_traits.hpp} +65 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +6 -575
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_handler.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_message.hpp +124 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +201 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_payload.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +134 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +499 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +82 -46
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +611 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +11 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +1197 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +14 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +27 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +6 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +27 -405
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +116 -229
- data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +168 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/append.hpp +18 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/as_tuple.hpp +13 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +400 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +98 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +71 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +67 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +151 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/deferred.hpp +31 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +53 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/prepend.hpp +16 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +97 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +51 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +119 -59
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +1321 -277
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +18 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +95 -50
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +53 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +111 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +75 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +35 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +130 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +89 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +95 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +128 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +245 -153
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +110 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +301 -166
- data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +140 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +358 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +647 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +19 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +16 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +140 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +25 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +154 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +10 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +70 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +100 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +98 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +95 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +242 -150
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +112 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +115 -25
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/addressof.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_impl.hpp +183 -64
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +166 -66
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +80 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_fp_cast.hpp +40 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch32.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch64.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_arm.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/classify.hpp +19 -10
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +19 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_ppc.hpp +105 -100
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_generic.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_ppc.hpp +73 -72
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/futex.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_arm_asm_common.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_ppc_asm_common.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +15 -6
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/alignment_of.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/has_unique_object_representations.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_enum.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_nothrow_default_constructible.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_darwin_ulock.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_windows.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_on_address.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_darwin_ulock.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_windows.hpp +55 -26
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/result_traits.hpp +12 -2
- data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +1 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +51 -35
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +14 -19
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +2 -45
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +23 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/workaround.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +12 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +70 -59
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +31 -40
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +13 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +17 -15
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +87 -84
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +59 -32
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +46 -35
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/hash_table.hpp +1278 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_pair.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +88 -69
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/multiallocation_chain.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +240 -105
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +19 -91
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/placement_new.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_resource.hpp +3 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +118 -244
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/type_traits.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +5 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +66 -38
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +28 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +27 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +14 -71
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +11 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +23 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +11 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +32 -87
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +100 -147
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +41 -35
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +74 -46
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +207 -187
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +86 -71
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +40 -35
- data/src/cxx_supportlib/vendor-modified/boost/core/alloc_construct.hpp +7 -81
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +426 -207
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_traits.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +28 -14
- data/src/cxx_supportlib/vendor-modified/boost/core/cmath.hpp +100 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/default_allocator.hpp +19 -9
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/splitmix64.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +1256 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +5 -51
- data/src/cxx_supportlib/vendor-modified/boost/core/noinit_adaptor.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/pointer_traits.hpp +111 -60
- data/src/cxx_supportlib/vendor-modified/boost/core/quick_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/span.hpp +399 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/type_name.hpp +1157 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/verbose_terminate_handler.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/conversion.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +38 -22
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +84 -2
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +85 -80
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +39 -39
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +37 -40
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +24 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +75 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +25 -25
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +76 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/empty_node_checker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +182 -102
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +106 -76
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_to_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +3 -140
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +11 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/value_functors.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +1525 -882
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +81 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +17 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +36 -36
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +32 -35
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +27 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/iterator/advance.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_undef.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/enable_if.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/iterator/transform_iterator.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +43 -30
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +72 -56
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +172 -128
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/heap_sort.hpp +19 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +108 -146
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +24 -15
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/pdqsort.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/search.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/set_difference.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/addressof.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/force_ptr.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +108 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +8 -32
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +40 -33
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +5 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +31 -28
- data/src/cxx_supportlib/vendor-modified/boost/mp11/algorithm.hpp +1306 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/config.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_append.hpp +185 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_copy_if.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_count.hpp +147 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_fold.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_front.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_list.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_map_find.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_min_element.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_plus.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_remove_if.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_rename.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_void.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_with_index.hpp +385 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/function.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integer_sequence.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integral.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/list.hpp +304 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/set.hpp +188 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/utility.hpp +263 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/mpl/and.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/template_arity.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/yes_no.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/bitand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/bitor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/or.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_hash.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +34 -23
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +85 -24
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +22 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/loongarch.h +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/icu.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/pattern_except.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_creator.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/icu.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/pattern_except.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_common.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_non_recursive.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +235 -104
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +3 -6
- data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/append_int.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +18 -2
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +31 -7
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +78 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +211 -42
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +77 -19
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category.hpp +9 -67
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category_impl.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +5 -17
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_message.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +30 -59
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +103 -5
- data/src/cxx_supportlib/vendor-modified/boost/token_functions.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +22 -21
- data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complete.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_function.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_function_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +819 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +1647 -2909
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +8 -14
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +262 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +8 -13
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +301 -142
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +199 -76
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/binary.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/in_place_factory.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +24 -3
- data/src/cxx_supportlib/vendor-modified/boost/utility/typed_in_place_factory.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/jsoncpp/json-forwards.h +261 -143
- data/src/cxx_supportlib/vendor-modified/jsoncpp/json.h +947 -763
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +1487 -1477
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/ruby.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +9 -0
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- metadata +129 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/checked_delete.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/pointer_to_other.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/indexed_bit_flag.hpp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_obsolete.hpp +0 -32
@@ -2,7 +2,7 @@
|
|
2
2
|
// basic_socket_acceptor.hpp
|
3
3
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~
|
4
4
|
//
|
5
|
-
// Copyright (c) 2003-
|
5
|
+
// Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
6
|
//
|
7
7
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
8
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -31,6 +31,8 @@
|
|
31
31
|
# include <boost/asio/detail/null_socket_service.hpp>
|
32
32
|
#elif defined(BOOST_ASIO_HAS_IOCP)
|
33
33
|
# include <boost/asio/detail/win_iocp_socket_service.hpp>
|
34
|
+
#elif defined(BOOST_ASIO_HAS_IO_URING_AS_DEFAULT)
|
35
|
+
# include <boost/asio/detail/io_uring_socket_service.hpp>
|
34
36
|
#else
|
35
37
|
# include <boost/asio/detail/reactive_socket_service.hpp>
|
36
38
|
#endif
|
@@ -83,6 +85,11 @@ template <typename Protocol, typename Executor>
|
|
83
85
|
class basic_socket_acceptor
|
84
86
|
: public socket_base
|
85
87
|
{
|
88
|
+
private:
|
89
|
+
class initiate_async_wait;
|
90
|
+
class initiate_async_accept;
|
91
|
+
class initiate_async_move_accept;
|
92
|
+
|
86
93
|
public:
|
87
94
|
/// The type of the executor associated with the object.
|
88
95
|
typedef Executor executor_type;
|
@@ -104,6 +111,9 @@ public:
|
|
104
111
|
#elif defined(BOOST_ASIO_HAS_IOCP)
|
105
112
|
typedef typename detail::win_iocp_socket_service<
|
106
113
|
Protocol>::native_handle_type native_handle_type;
|
114
|
+
#elif defined(BOOST_ASIO_HAS_IO_URING_AS_DEFAULT)
|
115
|
+
typedef typename detail::io_uring_socket_service<
|
116
|
+
Protocol>::native_handle_type native_handle_type;
|
107
117
|
#else
|
108
118
|
typedef typename detail::reactive_socket_service<
|
109
119
|
Protocol>::native_handle_type native_handle_type;
|
@@ -1192,21 +1202,28 @@ public:
|
|
1192
1202
|
/// write, or to have pending error conditions.
|
1193
1203
|
/**
|
1194
1204
|
* This function is used to perform an asynchronous wait for an acceptor to
|
1195
|
-
* enter a ready to read, write or error condition state.
|
1205
|
+
* enter a ready to read, write or error condition state. It is an initiating
|
1206
|
+
* function for an @ref asynchronous_operation, and always returns
|
1207
|
+
* immediately.
|
1196
1208
|
*
|
1197
1209
|
* @param w Specifies the desired acceptor state.
|
1198
1210
|
*
|
1199
|
-
* @param
|
1200
|
-
*
|
1201
|
-
*
|
1211
|
+
* @param token The @ref completion_token that will be used to produce a
|
1212
|
+
* completion handler, which will be called when the wait completes.
|
1213
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1214
|
+
* @ref yield_context, or a function object with the correct completion
|
1215
|
+
* signature. The function signature of the completion handler must be:
|
1202
1216
|
* @code void handler(
|
1203
|
-
* const boost::system::error_code& error // Result of operation
|
1217
|
+
* const boost::system::error_code& error // Result of operation.
|
1204
1218
|
* ); @endcode
|
1205
1219
|
* Regardless of whether the asynchronous operation completes immediately or
|
1206
|
-
* not, the handler will not be invoked from within this function.
|
1207
|
-
* immediate completion, invocation of the handler will be performed in a
|
1220
|
+
* not, the completion handler will not be invoked from within this function.
|
1221
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1208
1222
|
* manner equivalent to using boost::asio::post().
|
1209
1223
|
*
|
1224
|
+
* @par Completion Signature
|
1225
|
+
* @code void(boost::system::error_code) @endcode
|
1226
|
+
*
|
1210
1227
|
* @par Example
|
1211
1228
|
* @code
|
1212
1229
|
* void wait_handler(const boost::system::error_code& error)
|
@@ -1238,15 +1255,18 @@ public:
|
|
1238
1255
|
*/
|
1239
1256
|
template <
|
1240
1257
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code))
|
1241
|
-
|
1242
|
-
|
1258
|
+
WaitToken BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
1259
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(WaitToken,
|
1243
1260
|
void (boost::system::error_code))
|
1244
1261
|
async_wait(wait_type w,
|
1245
|
-
BOOST_ASIO_MOVE_ARG(
|
1262
|
+
BOOST_ASIO_MOVE_ARG(WaitToken) token
|
1246
1263
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type))
|
1264
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1265
|
+
async_initiate<WaitToken, void (boost::system::error_code)>(
|
1266
|
+
declval<initiate_async_wait>(), token, w)))
|
1247
1267
|
{
|
1248
|
-
return async_initiate<
|
1249
|
-
initiate_async_wait(this),
|
1268
|
+
return async_initiate<WaitToken, void (boost::system::error_code)>(
|
1269
|
+
initiate_async_wait(this), token, w);
|
1250
1270
|
}
|
1251
1271
|
|
1252
1272
|
#if !defined(BOOST_ASIO_NO_EXTENSIONS)
|
@@ -1318,23 +1338,30 @@ public:
|
|
1318
1338
|
/// Start an asynchronous accept.
|
1319
1339
|
/**
|
1320
1340
|
* This function is used to asynchronously accept a new connection into a
|
1321
|
-
* socket
|
1341
|
+
* socket, and additionally obtain the endpoint of the remote peer. It is an
|
1342
|
+
* initiating function for an @ref asynchronous_operation, and always returns
|
1343
|
+
* immediately.
|
1322
1344
|
*
|
1323
1345
|
* @param peer The socket into which the new connection will be accepted.
|
1324
1346
|
* Ownership of the peer object is retained by the caller, which must
|
1325
|
-
* guarantee that it is valid until the handler is called.
|
1347
|
+
* guarantee that it is valid until the completion handler is called.
|
1326
1348
|
*
|
1327
|
-
* @param
|
1328
|
-
*
|
1329
|
-
*
|
1349
|
+
* @param token The @ref completion_token that will be used to produce a
|
1350
|
+
* completion handler, which will be called when the accept completes.
|
1351
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1352
|
+
* @ref yield_context, or a function object with the correct completion
|
1353
|
+
* signature. The function signature of the completion handler must be:
|
1330
1354
|
* @code void handler(
|
1331
1355
|
* const boost::system::error_code& error // Result of operation.
|
1332
1356
|
* ); @endcode
|
1333
1357
|
* Regardless of whether the asynchronous operation completes immediately or
|
1334
|
-
* not, the handler will not be invoked from within this function.
|
1335
|
-
* immediate completion, invocation of the handler will be performed in a
|
1358
|
+
* not, the completion handler will not be invoked from within this function.
|
1359
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1336
1360
|
* manner equivalent to using boost::asio::post().
|
1337
1361
|
*
|
1362
|
+
* @par Completion Signature
|
1363
|
+
* @code void(boost::system::error_code) @endcode
|
1364
|
+
*
|
1338
1365
|
* @par Example
|
1339
1366
|
* @code
|
1340
1367
|
* void accept_handler(const boost::system::error_code& error)
|
@@ -1365,18 +1392,22 @@ public:
|
|
1365
1392
|
*/
|
1366
1393
|
template <typename Protocol1, typename Executor1,
|
1367
1394
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code))
|
1368
|
-
|
1369
|
-
|
1395
|
+
AcceptToken BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
1396
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(AcceptToken,
|
1370
1397
|
void (boost::system::error_code))
|
1371
1398
|
async_accept(basic_socket<Protocol1, Executor1>& peer,
|
1372
|
-
BOOST_ASIO_MOVE_ARG(
|
1399
|
+
BOOST_ASIO_MOVE_ARG(AcceptToken) token
|
1373
1400
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type),
|
1374
1401
|
typename constraint<
|
1375
1402
|
is_convertible<Protocol, Protocol1>::value
|
1376
1403
|
>::type = 0)
|
1404
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1405
|
+
async_initiate<AcceptToken, void (boost::system::error_code)>(
|
1406
|
+
declval<initiate_async_accept>(), token,
|
1407
|
+
&peer, static_cast<endpoint_type*>(0))))
|
1377
1408
|
{
|
1378
|
-
return async_initiate<
|
1379
|
-
initiate_async_accept(this),
|
1409
|
+
return async_initiate<AcceptToken, void (boost::system::error_code)>(
|
1410
|
+
initiate_async_accept(this), token,
|
1380
1411
|
&peer, static_cast<endpoint_type*>(0));
|
1381
1412
|
}
|
1382
1413
|
|
@@ -1453,29 +1484,35 @@ public:
|
|
1453
1484
|
/// Start an asynchronous accept.
|
1454
1485
|
/**
|
1455
1486
|
* This function is used to asynchronously accept a new connection into a
|
1456
|
-
* socket, and additionally obtain the endpoint of the remote peer.
|
1457
|
-
* function
|
1487
|
+
* socket, and additionally obtain the endpoint of the remote peer. It is an
|
1488
|
+
* initiating function for an @ref asynchronous_operation, and always returns
|
1489
|
+
* immediately.
|
1458
1490
|
*
|
1459
1491
|
* @param peer The socket into which the new connection will be accepted.
|
1460
1492
|
* Ownership of the peer object is retained by the caller, which must
|
1461
|
-
* guarantee that it is valid until the handler is called.
|
1493
|
+
* guarantee that it is valid until the completion handler is called.
|
1462
1494
|
*
|
1463
1495
|
* @param peer_endpoint An endpoint object into which the endpoint of the
|
1464
1496
|
* remote peer will be written. Ownership of the peer_endpoint object is
|
1465
1497
|
* retained by the caller, which must guarantee that it is valid until the
|
1466
1498
|
* handler is called.
|
1467
1499
|
*
|
1468
|
-
* @param
|
1469
|
-
*
|
1470
|
-
*
|
1500
|
+
* @param token The @ref completion_token that will be used to produce a
|
1501
|
+
* completion handler, which will be called when the accept completes.
|
1502
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1503
|
+
* @ref yield_context, or a function object with the correct completion
|
1504
|
+
* signature. The function signature of the completion handler must be:
|
1471
1505
|
* @code void handler(
|
1472
1506
|
* const boost::system::error_code& error // Result of operation.
|
1473
1507
|
* ); @endcode
|
1474
1508
|
* Regardless of whether the asynchronous operation completes immediately or
|
1475
|
-
* not, the handler will not be invoked from within this function.
|
1476
|
-
* immediate completion, invocation of the handler will be performed in a
|
1509
|
+
* not, the completion handler will not be invoked from within this function.
|
1510
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1477
1511
|
* manner equivalent to using boost::asio::post().
|
1478
1512
|
*
|
1513
|
+
* @par Completion Signature
|
1514
|
+
* @code void(boost::system::error_code) @endcode
|
1515
|
+
*
|
1479
1516
|
* @par Per-Operation Cancellation
|
1480
1517
|
* On POSIX or Windows operating systems, this asynchronous operation supports
|
1481
1518
|
* cancellation for the following boost::asio::cancellation_type values:
|
@@ -1488,16 +1525,19 @@ public:
|
|
1488
1525
|
*/
|
1489
1526
|
template <typename Executor1,
|
1490
1527
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code))
|
1491
|
-
|
1492
|
-
|
1528
|
+
AcceptToken BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
1529
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(AcceptToken,
|
1493
1530
|
void (boost::system::error_code))
|
1494
1531
|
async_accept(basic_socket<protocol_type, Executor1>& peer,
|
1495
1532
|
endpoint_type& peer_endpoint,
|
1496
|
-
BOOST_ASIO_MOVE_ARG(
|
1533
|
+
BOOST_ASIO_MOVE_ARG(AcceptToken) token
|
1497
1534
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type))
|
1535
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1536
|
+
async_initiate<AcceptToken, void (boost::system::error_code)>(
|
1537
|
+
declval<initiate_async_accept>(), token, &peer, &peer_endpoint)))
|
1498
1538
|
{
|
1499
|
-
return async_initiate<
|
1500
|
-
initiate_async_accept(this),
|
1539
|
+
return async_initiate<AcceptToken, void (boost::system::error_code)>(
|
1540
|
+
initiate_async_accept(this), token, &peer, &peer_endpoint);
|
1501
1541
|
}
|
1502
1542
|
#endif // !defined(BOOST_ASIO_NO_EXTENSIONS)
|
1503
1543
|
|
@@ -1569,27 +1609,36 @@ public:
|
|
1569
1609
|
|
1570
1610
|
/// Start an asynchronous accept.
|
1571
1611
|
/**
|
1572
|
-
* This function is used to asynchronously accept a new connection.
|
1573
|
-
* function
|
1612
|
+
* This function is used to asynchronously accept a new connection. It is an
|
1613
|
+
* initiating function for an @ref asynchronous_operation, and always returns
|
1614
|
+
* immediately.
|
1574
1615
|
*
|
1575
1616
|
* This overload requires that the Protocol template parameter satisfy the
|
1576
1617
|
* AcceptableProtocol type requirements.
|
1577
1618
|
*
|
1578
|
-
* @param
|
1579
|
-
*
|
1580
|
-
*
|
1619
|
+
* @param token The @ref completion_token that will be used to produce a
|
1620
|
+
* completion handler, which will be called when the accept completes.
|
1621
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1622
|
+
* @ref yield_context, or a function object with the correct completion
|
1623
|
+
* signature. The function signature of the completion handler must be:
|
1581
1624
|
* @code void handler(
|
1582
1625
|
* // Result of operation.
|
1583
1626
|
* const boost::system::error_code& error,
|
1627
|
+
*
|
1584
1628
|
* // On success, the newly accepted socket.
|
1585
1629
|
* typename Protocol::socket::template
|
1586
1630
|
* rebind_executor<executor_type>::other peer
|
1587
1631
|
* ); @endcode
|
1588
1632
|
* Regardless of whether the asynchronous operation completes immediately or
|
1589
|
-
* not, the handler will not be invoked from within this function.
|
1590
|
-
* immediate completion, invocation of the handler will be performed in a
|
1633
|
+
* not, the completion handler will not be invoked from within this function.
|
1634
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1591
1635
|
* manner equivalent to using boost::asio::post().
|
1592
1636
|
*
|
1637
|
+
* @par Completion Signature
|
1638
|
+
* @code void(boost::system::error_code,
|
1639
|
+
* typename Protocol::socket::template
|
1640
|
+
* rebind_executor<executor_type>::other)) @endcode
|
1641
|
+
*
|
1593
1642
|
* @par Example
|
1594
1643
|
* @code
|
1595
1644
|
* void accept_handler(const boost::system::error_code& error,
|
@@ -1621,20 +1670,28 @@ public:
|
|
1621
1670
|
template <
|
1622
1671
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1623
1672
|
typename Protocol::socket::template rebind_executor<
|
1624
|
-
executor_type>::other))
|
1673
|
+
executor_type>::other)) MoveAcceptToken
|
1625
1674
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
1626
|
-
|
1675
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(MoveAcceptToken,
|
1627
1676
|
void (boost::system::error_code,
|
1628
1677
|
typename Protocol::socket::template
|
1629
1678
|
rebind_executor<executor_type>::other))
|
1630
1679
|
async_accept(
|
1631
|
-
BOOST_ASIO_MOVE_ARG(
|
1680
|
+
BOOST_ASIO_MOVE_ARG(MoveAcceptToken) token
|
1632
1681
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type))
|
1633
|
-
|
1634
|
-
|
1682
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1683
|
+
async_initiate<MoveAcceptToken,
|
1684
|
+
void (boost::system::error_code, typename Protocol::socket::template
|
1685
|
+
rebind_executor<executor_type>::other)>(
|
1686
|
+
declval<initiate_async_move_accept>(), token,
|
1687
|
+
declval<executor_type>(), static_cast<endpoint_type*>(0),
|
1688
|
+
static_cast<typename Protocol::socket::template
|
1689
|
+
rebind_executor<executor_type>::other*>(0))))
|
1690
|
+
{
|
1691
|
+
return async_initiate<MoveAcceptToken,
|
1635
1692
|
void (boost::system::error_code, typename Protocol::socket::template
|
1636
1693
|
rebind_executor<executor_type>::other)>(
|
1637
|
-
initiate_async_move_accept(this),
|
1694
|
+
initiate_async_move_accept(this), token,
|
1638
1695
|
impl_.get_executor(), static_cast<endpoint_type*>(0),
|
1639
1696
|
static_cast<typename Protocol::socket::template
|
1640
1697
|
rebind_executor<executor_type>::other*>(0));
|
@@ -1804,8 +1861,9 @@ public:
|
|
1804
1861
|
|
1805
1862
|
/// Start an asynchronous accept.
|
1806
1863
|
/**
|
1807
|
-
* This function is used to asynchronously accept a new connection.
|
1808
|
-
* function
|
1864
|
+
* This function is used to asynchronously accept a new connection. It is an
|
1865
|
+
* initiating function for an @ref asynchronous_operation, and always returns
|
1866
|
+
* immediately.
|
1809
1867
|
*
|
1810
1868
|
* This overload requires that the Protocol template parameter satisfy the
|
1811
1869
|
* AcceptableProtocol type requirements.
|
@@ -1813,19 +1871,29 @@ public:
|
|
1813
1871
|
* @param ex The I/O executor object to be used for the newly accepted
|
1814
1872
|
* socket.
|
1815
1873
|
*
|
1816
|
-
* @param
|
1817
|
-
*
|
1818
|
-
*
|
1874
|
+
* @param token The @ref completion_token that will be used to produce a
|
1875
|
+
* completion handler, which will be called when the accept completes.
|
1876
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1877
|
+
* @ref yield_context, or a function object with the correct completion
|
1878
|
+
* signature. The function signature of the completion handler must be:
|
1819
1879
|
* @code void handler(
|
1820
|
-
*
|
1880
|
+
* // Result of operation.
|
1881
|
+
* const boost::system::error_code& error,
|
1882
|
+
*
|
1883
|
+
* // On success, the newly accepted socket.
|
1821
1884
|
* typename Protocol::socket::template rebind_executor<
|
1822
|
-
* Executor1>::other peer
|
1885
|
+
* Executor1>::other peer
|
1823
1886
|
* ); @endcode
|
1824
1887
|
* Regardless of whether the asynchronous operation completes immediately or
|
1825
|
-
* not, the handler will not be invoked from within this function.
|
1826
|
-
* immediate completion, invocation of the handler will be performed in a
|
1888
|
+
* not, the completion handler will not be invoked from within this function.
|
1889
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1827
1890
|
* manner equivalent to using boost::asio::post().
|
1828
1891
|
*
|
1892
|
+
* @par Completion Signature
|
1893
|
+
* @code void(boost::system::error_code,
|
1894
|
+
* typename Protocol::socket::template rebind_executor<
|
1895
|
+
* Executor1>::other)) @endcode
|
1896
|
+
*
|
1829
1897
|
* @par Example
|
1830
1898
|
* @code
|
1831
1899
|
* void accept_handler(const boost::system::error_code& error,
|
@@ -1857,34 +1925,44 @@ public:
|
|
1857
1925
|
template <typename Executor1,
|
1858
1926
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1859
1927
|
typename Protocol::socket::template rebind_executor<
|
1860
|
-
Executor1>::other))
|
1928
|
+
Executor1>::other)) MoveAcceptToken
|
1861
1929
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
1862
|
-
|
1930
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(MoveAcceptToken,
|
1863
1931
|
void (boost::system::error_code,
|
1864
1932
|
typename Protocol::socket::template rebind_executor<
|
1865
1933
|
Executor1>::other))
|
1866
1934
|
async_accept(const Executor1& ex,
|
1867
|
-
BOOST_ASIO_MOVE_ARG(
|
1935
|
+
BOOST_ASIO_MOVE_ARG(MoveAcceptToken) token
|
1868
1936
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type),
|
1869
1937
|
typename constraint<
|
1870
1938
|
is_executor<Executor1>::value
|
1871
1939
|
|| execution::is_executor<Executor1>::value
|
1872
1940
|
>::type = 0)
|
1873
|
-
|
1874
|
-
|
1875
|
-
|
1876
|
-
|
1877
|
-
|
1878
|
-
|
1879
|
-
|
1880
|
-
|
1881
|
-
|
1941
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1942
|
+
async_initiate<MoveAcceptToken,
|
1943
|
+
void (boost::system::error_code,
|
1944
|
+
typename Protocol::socket::template rebind_executor<
|
1945
|
+
Executor1>::other)>(
|
1946
|
+
declval<initiate_async_move_accept>(), token,
|
1947
|
+
ex, static_cast<endpoint_type*>(0),
|
1948
|
+
static_cast<typename Protocol::socket::template
|
1949
|
+
rebind_executor<Executor1>::other*>(0))))
|
1950
|
+
{
|
1951
|
+
return async_initiate<MoveAcceptToken,
|
1952
|
+
void (boost::system::error_code,
|
1953
|
+
typename Protocol::socket::template rebind_executor<
|
1954
|
+
Executor1>::other)>(
|
1955
|
+
initiate_async_move_accept(this), token,
|
1956
|
+
ex, static_cast<endpoint_type*>(0),
|
1957
|
+
static_cast<typename Protocol::socket::template
|
1958
|
+
rebind_executor<Executor1>::other*>(0));
|
1882
1959
|
}
|
1883
1960
|
|
1884
1961
|
/// Start an asynchronous accept.
|
1885
1962
|
/**
|
1886
|
-
* This function is used to asynchronously accept a new connection.
|
1887
|
-
* function
|
1963
|
+
* This function is used to asynchronously accept a new connection. It is an
|
1964
|
+
* initiating function for an @ref asynchronous_operation, and always returns
|
1965
|
+
* immediately.
|
1888
1966
|
*
|
1889
1967
|
* This overload requires that the Protocol template parameter satisfy the
|
1890
1968
|
* AcceptableProtocol type requirements.
|
@@ -1892,20 +1970,29 @@ public:
|
|
1892
1970
|
* @param context The I/O execution context object to be used for the newly
|
1893
1971
|
* accepted socket.
|
1894
1972
|
*
|
1895
|
-
* @param
|
1896
|
-
*
|
1897
|
-
*
|
1973
|
+
* @param token The @ref completion_token that will be used to produce a
|
1974
|
+
* completion handler, which will be called when the accept completes.
|
1975
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1976
|
+
* @ref yield_context, or a function object with the correct completion
|
1977
|
+
* signature. The function signature of the completion handler must be:
|
1898
1978
|
* @code void handler(
|
1899
|
-
*
|
1979
|
+
* // Result of operation.
|
1980
|
+
* const boost::system::error_code& error,
|
1981
|
+
*
|
1982
|
+
* // On success, the newly accepted socket.
|
1900
1983
|
* typename Protocol::socket::template rebind_executor<
|
1901
1984
|
* typename ExecutionContext::executor_type>::other peer
|
1902
|
-
* // On success, the newly accepted socket.
|
1903
1985
|
* ); @endcode
|
1904
1986
|
* Regardless of whether the asynchronous operation completes immediately or
|
1905
|
-
* not, the handler will not be invoked from within this function.
|
1906
|
-
* immediate completion, invocation of the handler will be performed in a
|
1987
|
+
* not, the completion handler will not be invoked from within this function.
|
1988
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1907
1989
|
* manner equivalent to using boost::asio::post().
|
1908
1990
|
*
|
1991
|
+
* @par Completion Signature
|
1992
|
+
* @code void(boost::system::error_code,
|
1993
|
+
* typename Protocol::socket::template rebind_executor<
|
1994
|
+
* typename ExecutionContext::executor_type>::other)) @endcode
|
1995
|
+
*
|
1909
1996
|
* @par Example
|
1910
1997
|
* @code
|
1911
1998
|
* void accept_handler(const boost::system::error_code& error,
|
@@ -1937,27 +2024,36 @@ public:
|
|
1937
2024
|
template <typename ExecutionContext,
|
1938
2025
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1939
2026
|
typename Protocol::socket::template rebind_executor<
|
1940
|
-
typename ExecutionContext::executor_type>::other))
|
2027
|
+
typename ExecutionContext::executor_type>::other)) MoveAcceptToken
|
1941
2028
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
1942
|
-
|
2029
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(MoveAcceptToken,
|
1943
2030
|
void (boost::system::error_code,
|
1944
2031
|
typename Protocol::socket::template rebind_executor<
|
1945
2032
|
typename ExecutionContext::executor_type>::other))
|
1946
2033
|
async_accept(ExecutionContext& context,
|
1947
|
-
BOOST_ASIO_MOVE_ARG(
|
2034
|
+
BOOST_ASIO_MOVE_ARG(MoveAcceptToken) token
|
1948
2035
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type),
|
1949
2036
|
typename constraint<
|
1950
2037
|
is_convertible<ExecutionContext&, execution_context&>::value
|
1951
2038
|
>::type = 0)
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
1955
|
-
|
1956
|
-
|
1957
|
-
|
1958
|
-
|
1959
|
-
|
1960
|
-
|
2039
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2040
|
+
async_initiate<MoveAcceptToken,
|
2041
|
+
void (boost::system::error_code,
|
2042
|
+
typename Protocol::socket::template rebind_executor<
|
2043
|
+
typename ExecutionContext::executor_type>::other)>(
|
2044
|
+
declval<initiate_async_move_accept>(), token,
|
2045
|
+
context.get_executor(), static_cast<endpoint_type*>(0),
|
2046
|
+
static_cast<typename Protocol::socket::template rebind_executor<
|
2047
|
+
typename ExecutionContext::executor_type>::other*>(0))))
|
2048
|
+
{
|
2049
|
+
return async_initiate<MoveAcceptToken,
|
2050
|
+
void (boost::system::error_code,
|
2051
|
+
typename Protocol::socket::template rebind_executor<
|
2052
|
+
typename ExecutionContext::executor_type>::other)>(
|
2053
|
+
initiate_async_move_accept(this), token,
|
2054
|
+
context.get_executor(), static_cast<endpoint_type*>(0),
|
2055
|
+
static_cast<typename Protocol::socket::template rebind_executor<
|
2056
|
+
typename ExecutionContext::executor_type>::other*>(0));
|
1961
2057
|
}
|
1962
2058
|
|
1963
2059
|
/// Accept a new connection.
|
@@ -2037,8 +2133,9 @@ public:
|
|
2037
2133
|
|
2038
2134
|
/// Start an asynchronous accept.
|
2039
2135
|
/**
|
2040
|
-
* This function is used to asynchronously accept a new connection.
|
2041
|
-
* function
|
2136
|
+
* This function is used to asynchronously accept a new connection. It is an
|
2137
|
+
* initiating function for an @ref asynchronous_operation, and always returns
|
2138
|
+
* immediately.
|
2042
2139
|
*
|
2043
2140
|
* This overload requires that the Protocol template parameter satisfy the
|
2044
2141
|
* AcceptableProtocol type requirements.
|
@@ -2046,23 +2143,31 @@ public:
|
|
2046
2143
|
* @param peer_endpoint An endpoint object into which the endpoint of the
|
2047
2144
|
* remote peer will be written. Ownership of the peer_endpoint object is
|
2048
2145
|
* retained by the caller, which must guarantee that it is valid until the
|
2049
|
-
* handler is called.
|
2146
|
+
* completion handler is called.
|
2050
2147
|
*
|
2051
|
-
* @param
|
2052
|
-
*
|
2053
|
-
*
|
2148
|
+
* @param token The @ref completion_token that will be used to produce a
|
2149
|
+
* completion handler, which will be called when the accept completes.
|
2150
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2151
|
+
* @ref yield_context, or a function object with the correct completion
|
2152
|
+
* signature. The function signature of the completion handler must be:
|
2054
2153
|
* @code void handler(
|
2055
2154
|
* // Result of operation.
|
2056
2155
|
* const boost::system::error_code& error,
|
2156
|
+
*
|
2057
2157
|
* // On success, the newly accepted socket.
|
2058
2158
|
* typename Protocol::socket::template
|
2059
2159
|
* rebind_executor<executor_type>::other peer
|
2060
2160
|
* ); @endcode
|
2061
2161
|
* Regardless of whether the asynchronous operation completes immediately or
|
2062
|
-
* not, the handler will not be invoked from within this function.
|
2063
|
-
* immediate completion, invocation of the handler will be performed in a
|
2162
|
+
* not, the completion handler will not be invoked from within this function.
|
2163
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2064
2164
|
* manner equivalent to using boost::asio::post().
|
2065
2165
|
*
|
2166
|
+
* @par Completion Signature
|
2167
|
+
* @code void(boost::system::error_code,
|
2168
|
+
* typename Protocol::socket::template
|
2169
|
+
* rebind_executor<executor_type>::other)) @endcode
|
2170
|
+
*
|
2066
2171
|
* @par Example
|
2067
2172
|
* @code
|
2068
2173
|
* void accept_handler(const boost::system::error_code& error,
|
@@ -2095,20 +2200,28 @@ public:
|
|
2095
2200
|
template <
|
2096
2201
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2097
2202
|
typename Protocol::socket::template rebind_executor<
|
2098
|
-
executor_type>::other))
|
2203
|
+
executor_type>::other)) MoveAcceptToken
|
2099
2204
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
2100
|
-
|
2205
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(MoveAcceptToken,
|
2101
2206
|
void (boost::system::error_code,
|
2102
2207
|
typename Protocol::socket::template
|
2103
2208
|
rebind_executor<executor_type>::other))
|
2104
2209
|
async_accept(endpoint_type& peer_endpoint,
|
2105
|
-
BOOST_ASIO_MOVE_ARG(
|
2210
|
+
BOOST_ASIO_MOVE_ARG(MoveAcceptToken) token
|
2106
2211
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type))
|
2107
|
-
|
2108
|
-
|
2212
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2213
|
+
async_initiate<MoveAcceptToken,
|
2214
|
+
void (boost::system::error_code, typename Protocol::socket::template
|
2215
|
+
rebind_executor<executor_type>::other)>(
|
2216
|
+
declval<initiate_async_move_accept>(), token,
|
2217
|
+
declval<executor_type>(), &peer_endpoint,
|
2218
|
+
static_cast<typename Protocol::socket::template
|
2219
|
+
rebind_executor<executor_type>::other*>(0))))
|
2220
|
+
{
|
2221
|
+
return async_initiate<MoveAcceptToken,
|
2109
2222
|
void (boost::system::error_code, typename Protocol::socket::template
|
2110
2223
|
rebind_executor<executor_type>::other)>(
|
2111
|
-
initiate_async_move_accept(this),
|
2224
|
+
initiate_async_move_accept(this), token,
|
2112
2225
|
impl_.get_executor(), &peer_endpoint,
|
2113
2226
|
static_cast<typename Protocol::socket::template
|
2114
2227
|
rebind_executor<executor_type>::other*>(0));
|
@@ -2304,8 +2417,9 @@ public:
|
|
2304
2417
|
|
2305
2418
|
/// Start an asynchronous accept.
|
2306
2419
|
/**
|
2307
|
-
* This function is used to asynchronously accept a new connection.
|
2308
|
-
* function
|
2420
|
+
* This function is used to asynchronously accept a new connection. It is an
|
2421
|
+
* initiating function for an @ref asynchronous_operation, and always returns
|
2422
|
+
* immediately.
|
2309
2423
|
*
|
2310
2424
|
* This overload requires that the Protocol template parameter satisfy the
|
2311
2425
|
* AcceptableProtocol type requirements.
|
@@ -2316,21 +2430,31 @@ public:
|
|
2316
2430
|
* @param peer_endpoint An endpoint object into which the endpoint of the
|
2317
2431
|
* remote peer will be written. Ownership of the peer_endpoint object is
|
2318
2432
|
* retained by the caller, which must guarantee that it is valid until the
|
2319
|
-
* handler is called.
|
2433
|
+
* completion handler is called.
|
2320
2434
|
*
|
2321
|
-
* @param
|
2322
|
-
*
|
2323
|
-
*
|
2435
|
+
* @param token The @ref completion_token that will be used to produce a
|
2436
|
+
* completion handler, which will be called when the accept completes.
|
2437
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2438
|
+
* @ref yield_context, or a function object with the correct completion
|
2439
|
+
* signature. The function signature of the completion handler must be:
|
2324
2440
|
* @code void handler(
|
2325
|
-
*
|
2441
|
+
* // Result of operation.
|
2442
|
+
* const boost::system::error_code& error,
|
2443
|
+
*
|
2444
|
+
* // On success, the newly accepted socket.
|
2326
2445
|
* typename Protocol::socket::template rebind_executor<
|
2327
|
-
* Executor1>::other peer
|
2446
|
+
* Executor1>::other peer
|
2328
2447
|
* ); @endcode
|
2329
2448
|
* Regardless of whether the asynchronous operation completes immediately or
|
2330
|
-
* not, the handler will not be invoked from within this function.
|
2331
|
-
* immediate completion, invocation of the handler will be performed in a
|
2449
|
+
* not, the completion handler will not be invoked from within this function.
|
2450
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2332
2451
|
* manner equivalent to using boost::asio::post().
|
2333
2452
|
*
|
2453
|
+
* @par Completion Signature
|
2454
|
+
* @code void(boost::system::error_code,
|
2455
|
+
* typename Protocol::socket::template rebind_executor<
|
2456
|
+
* Executor1>::other)) @endcode
|
2457
|
+
*
|
2334
2458
|
* @par Example
|
2335
2459
|
* @code
|
2336
2460
|
* void accept_handler(const boost::system::error_code& error,
|
@@ -2363,34 +2487,42 @@ public:
|
|
2363
2487
|
template <typename Executor1,
|
2364
2488
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2365
2489
|
typename Protocol::socket::template rebind_executor<
|
2366
|
-
Executor1>::other))
|
2490
|
+
Executor1>::other)) MoveAcceptToken
|
2367
2491
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
2368
|
-
|
2492
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(MoveAcceptToken,
|
2369
2493
|
void (boost::system::error_code,
|
2370
2494
|
typename Protocol::socket::template rebind_executor<
|
2371
2495
|
Executor1>::other))
|
2372
2496
|
async_accept(const Executor1& ex, endpoint_type& peer_endpoint,
|
2373
|
-
BOOST_ASIO_MOVE_ARG(
|
2497
|
+
BOOST_ASIO_MOVE_ARG(MoveAcceptToken) token
|
2374
2498
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type),
|
2375
2499
|
typename constraint<
|
2376
2500
|
is_executor<Executor1>::value
|
2377
2501
|
|| execution::is_executor<Executor1>::value
|
2378
2502
|
>::type = 0)
|
2503
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2504
|
+
async_initiate<MoveAcceptToken,
|
2505
|
+
void (boost::system::error_code,
|
2506
|
+
typename Protocol::socket::template rebind_executor<
|
2507
|
+
Executor1>::other)>(
|
2508
|
+
declval<initiate_async_move_accept>(), token, ex, &peer_endpoint,
|
2509
|
+
static_cast<typename Protocol::socket::template
|
2510
|
+
rebind_executor<Executor1>::other*>(0))))
|
2379
2511
|
{
|
2380
|
-
|
2381
|
-
|
2382
|
-
|
2383
|
-
|
2384
|
-
|
2385
|
-
|
2386
|
-
|
2387
|
-
static_cast<other_socket_type*>(0));
|
2512
|
+
return async_initiate<MoveAcceptToken,
|
2513
|
+
void (boost::system::error_code,
|
2514
|
+
typename Protocol::socket::template rebind_executor<
|
2515
|
+
Executor1>::other)>(
|
2516
|
+
initiate_async_move_accept(this), token, ex, &peer_endpoint,
|
2517
|
+
static_cast<typename Protocol::socket::template
|
2518
|
+
rebind_executor<Executor1>::other*>(0));
|
2388
2519
|
}
|
2389
2520
|
|
2390
2521
|
/// Start an asynchronous accept.
|
2391
2522
|
/**
|
2392
|
-
* This function is used to asynchronously accept a new connection.
|
2393
|
-
* function
|
2523
|
+
* This function is used to asynchronously accept a new connection. It is an
|
2524
|
+
* initiating function for an @ref asynchronous_operation, and always returns
|
2525
|
+
* immediately.
|
2394
2526
|
*
|
2395
2527
|
* This overload requires that the Protocol template parameter satisfy the
|
2396
2528
|
* AcceptableProtocol type requirements.
|
@@ -2401,22 +2533,31 @@ public:
|
|
2401
2533
|
* @param peer_endpoint An endpoint object into which the endpoint of the
|
2402
2534
|
* remote peer will be written. Ownership of the peer_endpoint object is
|
2403
2535
|
* retained by the caller, which must guarantee that it is valid until the
|
2404
|
-
* handler is called.
|
2536
|
+
* completion handler is called.
|
2405
2537
|
*
|
2406
|
-
* @param
|
2407
|
-
*
|
2408
|
-
*
|
2538
|
+
* @param token The @ref completion_token that will be used to produce a
|
2539
|
+
* completion handler, which will be called when the accept completes.
|
2540
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2541
|
+
* @ref yield_context, or a function object with the correct completion
|
2542
|
+
* signature. The function signature of the completion handler must be:
|
2409
2543
|
* @code void handler(
|
2410
|
-
*
|
2544
|
+
* // Result of operation.
|
2545
|
+
* const boost::system::error_code& error,
|
2546
|
+
*
|
2547
|
+
* // On success, the newly accepted socket.
|
2411
2548
|
* typename Protocol::socket::template rebind_executor<
|
2412
2549
|
* typename ExecutionContext::executor_type>::other peer
|
2413
|
-
* // On success, the newly accepted socket.
|
2414
2550
|
* ); @endcode
|
2415
2551
|
* Regardless of whether the asynchronous operation completes immediately or
|
2416
|
-
* not, the handler will not be invoked from within this function.
|
2417
|
-
* immediate completion, invocation of the handler will be performed in a
|
2552
|
+
* not, the completion handler will not be invoked from within this function.
|
2553
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2418
2554
|
* manner equivalent to using boost::asio::post().
|
2419
2555
|
*
|
2556
|
+
* @par Completion Signature
|
2557
|
+
* @code void(boost::system::error_code,
|
2558
|
+
* typename Protocol::socket::template rebind_executor<
|
2559
|
+
* typename ExecutionContext::executor_type>::other)) @endcode
|
2560
|
+
*
|
2420
2561
|
* @par Example
|
2421
2562
|
* @code
|
2422
2563
|
* void accept_handler(const boost::system::error_code& error,
|
@@ -2449,28 +2590,37 @@ public:
|
|
2449
2590
|
template <typename ExecutionContext,
|
2450
2591
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2451
2592
|
typename Protocol::socket::template rebind_executor<
|
2452
|
-
typename ExecutionContext::executor_type>::other))
|
2593
|
+
typename ExecutionContext::executor_type>::other)) MoveAcceptToken
|
2453
2594
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
|
2454
|
-
|
2595
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(MoveAcceptToken,
|
2455
2596
|
void (boost::system::error_code,
|
2456
2597
|
typename Protocol::socket::template rebind_executor<
|
2457
2598
|
typename ExecutionContext::executor_type>::other))
|
2458
2599
|
async_accept(ExecutionContext& context,
|
2459
2600
|
endpoint_type& peer_endpoint,
|
2460
|
-
BOOST_ASIO_MOVE_ARG(
|
2601
|
+
BOOST_ASIO_MOVE_ARG(MoveAcceptToken) token
|
2461
2602
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type),
|
2462
2603
|
typename constraint<
|
2463
2604
|
is_convertible<ExecutionContext&, execution_context&>::value
|
2464
2605
|
>::type = 0)
|
2465
|
-
|
2466
|
-
|
2467
|
-
|
2468
|
-
|
2469
|
-
|
2470
|
-
|
2471
|
-
|
2472
|
-
|
2473
|
-
|
2606
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2607
|
+
async_initiate<MoveAcceptToken,
|
2608
|
+
void (boost::system::error_code,
|
2609
|
+
typename Protocol::socket::template rebind_executor<
|
2610
|
+
typename ExecutionContext::executor_type>::other)>(
|
2611
|
+
declval<initiate_async_move_accept>(), token,
|
2612
|
+
context.get_executor(), &peer_endpoint,
|
2613
|
+
static_cast<typename Protocol::socket::template rebind_executor<
|
2614
|
+
typename ExecutionContext::executor_type>::other*>(0))))
|
2615
|
+
{
|
2616
|
+
return async_initiate<MoveAcceptToken,
|
2617
|
+
void (boost::system::error_code,
|
2618
|
+
typename Protocol::socket::template rebind_executor<
|
2619
|
+
typename ExecutionContext::executor_type>::other)>(
|
2620
|
+
initiate_async_move_accept(this), token,
|
2621
|
+
context.get_executor(), &peer_endpoint,
|
2622
|
+
static_cast<typename Protocol::socket::template rebind_executor<
|
2623
|
+
typename ExecutionContext::executor_type>::other*>(0));
|
2474
2624
|
}
|
2475
2625
|
#endif // defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
|
2476
2626
|
|
@@ -2586,6 +2736,9 @@ private:
|
|
2586
2736
|
#elif defined(BOOST_ASIO_HAS_IOCP)
|
2587
2737
|
detail::io_object_impl<
|
2588
2738
|
detail::win_iocp_socket_service<Protocol>, Executor> impl_;
|
2739
|
+
#elif defined(BOOST_ASIO_HAS_IO_URING_AS_DEFAULT)
|
2740
|
+
detail::io_object_impl<
|
2741
|
+
detail::io_uring_socket_service<Protocol>, Executor> impl_;
|
2589
2742
|
#else
|
2590
2743
|
detail::io_object_impl<
|
2591
2744
|
detail::reactive_socket_service<Protocol>, Executor> impl_;
|