passenger 6.0.14 → 6.0.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (963) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +28 -1
  3. data/CONTRIBUTORS +2 -0
  4. data/build/common_library.rb +1 -0
  5. data/src/agent/Core/Config.h +1 -1
  6. data/src/agent/Core/Controller/Config.h +1 -1
  7. data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +24 -2
  8. data/src/agent/Watchdog/Config.h +1 -1
  9. data/src/agent/Watchdog/WatchdogMain.cpp +4 -0
  10. data/src/cxx_supportlib/BackgroundEventLoop.cpp +4 -0
  11. data/src/cxx_supportlib/Constants.h +1 -1
  12. data/src/cxx_supportlib/LoggingKit/Context.h +1 -1
  13. data/src/cxx_supportlib/SafeLibev.h +2 -0
  14. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_iterator.hpp +11 -3
  15. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_iterator.hpp +27 -1
  16. data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_sunos.hpp +34 -0
  17. data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +42 -39
  18. data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +80 -0
  19. data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +141 -0
  20. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +4 -4
  21. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +4 -3
  22. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +4 -4
  23. data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +1 -1
  24. data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +363 -1
  25. data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +10 -1
  26. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +208 -115
  27. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +28 -16
  28. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +831 -0
  29. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +1 -1
  30. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +703 -0
  31. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +210 -117
  32. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +637 -0
  33. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +84 -47
  34. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +123 -30
  35. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +36 -14
  36. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +58 -26
  37. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +303 -150
  38. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +1 -1
  39. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +1 -1
  40. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +756 -0
  41. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +153 -84
  42. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +1 -1
  43. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +1 -1
  44. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +28 -16
  45. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +633 -0
  46. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +724 -0
  47. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +11 -8
  48. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +36 -20
  49. data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +222 -42
  50. data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +330 -0
  51. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +38 -6
  52. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
  53. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +34 -5
  54. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
  55. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +38 -6
  56. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
  57. data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +1 -1
  58. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +10 -64
  59. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +1 -1
  60. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +1 -1
  61. data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +33 -9
  62. data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +1 -1
  63. data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +682 -12
  64. data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +132 -61
  65. data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +85 -0
  66. data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +1 -1
  67. data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
  68. data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +128 -42
  69. data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +677 -0
  70. data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +6 -5
  71. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +1 -1
  72. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +1 -1
  73. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
  74. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +4 -1
  75. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +1 -1
  76. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +1 -1
  77. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +1 -1
  78. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +1 -1
  79. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
  80. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +192 -1
  81. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +1 -1
  82. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bulk_executor_op.hpp +1 -1
  83. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
  84. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +1 -1
  85. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
  86. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +1 -1
  87. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
  88. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +1 -1
  89. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
  90. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +233 -10
  91. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +38 -1
  92. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -1
  93. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +3 -1
  94. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
  95. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +1 -1
  96. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
  97. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +42 -2
  98. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +3 -1
  99. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +3 -1
  100. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +10 -2
  101. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +4 -2
  102. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +1 -1
  103. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +1 -1
  104. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +42 -0
  105. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +1 -1
  106. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +1 -1
  107. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
  108. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +1 -1
  109. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +1 -1
  110. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +1 -1
  111. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +1 -1
  112. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +1 -1
  113. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +1 -1
  114. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +2 -2
  115. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +1 -1
  116. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +1 -1
  117. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
  118. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +1 -1
  119. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +1 -1
  120. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +1 -1
  121. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +1 -1
  122. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
  123. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
  124. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +330 -5
  125. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +13 -1
  126. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +1 -1
  127. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +1 -1
  128. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +1 -1
  129. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +1 -1
  130. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +1 -1
  131. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +207 -0
  132. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +142 -0
  133. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +114 -0
  134. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +882 -0
  135. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +251 -0
  136. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +1 -1
  137. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +1 -1
  138. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
  139. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +1 -1
  140. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +1 -1
  141. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
  142. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/{reactive_serial_port_service.ipp → posix_serial_port_service.ipp} +38 -19
  143. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
  144. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
  145. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +9 -2
  146. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +6 -4
  147. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +1 -1
  148. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +19 -4
  149. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +1 -1
  150. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +36 -1
  151. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +1 -1
  152. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
  153. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +108 -3
  154. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +126 -121
  155. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +4 -4
  156. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +1 -1
  157. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +1 -1
  158. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +1 -1
  159. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +1 -1
  160. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +1 -1
  161. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +10 -6
  162. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +1 -1
  163. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
  164. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
  165. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +11 -2
  166. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +194 -0
  167. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +189 -0
  168. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +681 -0
  169. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +188 -0
  170. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +184 -0
  171. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +264 -0
  172. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +115 -0
  173. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +86 -0
  174. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +320 -0
  175. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +283 -0
  176. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +141 -0
  177. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +204 -0
  178. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +205 -0
  179. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +191 -0
  180. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +190 -0
  181. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +193 -0
  182. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +633 -0
  183. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +665 -0
  184. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +113 -0
  185. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +27 -1
  186. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
  187. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
  188. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +4 -2
  189. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
  190. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +1 -1
  191. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +17 -1
  192. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +1 -1
  193. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +1 -1
  194. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
  195. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +1 -1
  196. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
  197. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
  198. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -5
  199. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +19 -4
  200. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
  201. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +1 -1
  202. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
  203. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
  204. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
  205. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
  206. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +1 -1
  207. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
  208. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
  209. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +1 -1
  210. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +9 -1
  211. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +1 -1
  212. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
  213. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
  214. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
  215. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/{reactive_serial_port_service.hpp → posix_serial_port_service.hpp} +30 -18
  216. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
  217. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
  218. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
  219. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
  220. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +12 -2
  221. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +29 -8
  222. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +1 -1
  223. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +5 -1
  224. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +3 -1
  225. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +3 -1
  226. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +3 -1
  227. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +3 -1
  228. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +3 -1
  229. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +3 -1
  230. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +41 -13
  231. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +5 -4
  232. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +1 -1
  233. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +29 -5
  234. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +1 -1
  235. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +1 -1
  236. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +1 -1
  237. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +1 -1
  238. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +1 -1
  239. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
  240. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +1 -1
  241. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +3 -1
  242. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +1 -1
  243. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +16 -4
  244. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
  245. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +51 -0
  246. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
  247. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
  248. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
  249. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
  250. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +27 -1
  251. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +1 -1
  252. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
  253. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +1 -1
  254. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
  255. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +5 -1
  256. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +57 -3
  257. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
  258. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +37 -45
  259. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
  260. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +1 -1
  261. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +1 -1
  262. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +1 -1
  263. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +1 -1
  264. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +1 -1
  265. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +1 -1
  266. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -1
  267. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -1
  268. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -1
  269. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -1
  270. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -1
  271. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +1 -1
  272. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +1 -1
  273. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
  274. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +1 -1
  275. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +1 -1
  276. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +1 -1
  277. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +5 -1
  278. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +18 -9
  279. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +7 -3
  280. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +1 -1
  281. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
  282. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +1 -1
  283. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
  284. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +3 -1
  285. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +3 -1
  286. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
  287. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +9 -1
  288. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +86 -0
  289. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +1 -1
  290. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +1 -1
  291. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +1 -1
  292. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +1 -1
  293. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +4 -2
  294. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +1 -1
  295. data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +126 -42
  296. data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +30 -1
  297. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +1 -1
  298. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +7 -2
  299. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +1 -1
  300. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +1 -1
  301. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +1 -1
  302. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +1 -1
  303. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +1 -1
  304. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +1 -1
  305. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +1 -1
  306. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +1 -1
  307. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_invocable.hpp +1 -1
  308. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +1 -1
  309. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_receiver.hpp +1 -1
  310. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/bulk_sender.hpp +1 -1
  311. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/submit_receiver.hpp +1 -1
  312. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/void_receiver.hpp +1 -1
  313. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +1 -1
  314. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +1 -1
  315. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +1 -1
  316. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/receiver_invocation_error.ipp +1 -1
  317. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +1 -1
  318. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +1 -1
  319. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +1 -1
  320. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +1 -1
  321. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +1 -1
  322. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +1 -1
  323. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +1 -1
  324. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver_invocation_error.hpp +1 -1
  325. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +1 -1
  326. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +1 -1
  327. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +1 -1
  328. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +1 -1
  329. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +1 -1
  330. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +1 -1
  331. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +1 -1
  332. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +1 -1
  333. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +1 -1
  334. data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +1 -1
  335. data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +1 -1
  336. data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +1 -1
  337. data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +100 -32
  338. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +6 -41
  339. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +6 -5
  340. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +6 -101
  341. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +14 -14
  342. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +493 -0
  343. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +493 -0
  344. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +1 -1
  345. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +72 -0
  346. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +88 -0
  347. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +233 -0
  348. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +189 -0
  349. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +72 -0
  350. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +95 -887
  351. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/{detail/coro_traits.hpp → coro_traits.hpp} +65 -20
  352. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +6 -575
  353. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_handler.hpp +72 -0
  354. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_message.hpp +124 -0
  355. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +201 -0
  356. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_payload.hpp +95 -0
  357. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +114 -0
  358. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +134 -0
  359. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +142 -0
  360. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +499 -0
  361. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +82 -46
  362. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +3 -3
  363. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +56 -0
  364. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +611 -0
  365. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +11 -12
  366. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +1 -1
  367. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +63 -0
  368. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +1197 -0
  369. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +14 -28
  370. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +6 -2
  371. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +270 -0
  372. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +27 -37
  373. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +6 -41
  374. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +27 -405
  375. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +116 -229
  376. data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +168 -0
  377. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +1 -1
  378. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +1 -1
  379. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
  380. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
  381. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +1 -1
  382. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +1 -1
  383. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +1 -1
  384. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +1 -1
  385. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
  386. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +1 -1
  387. data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -1
  388. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +131 -0
  389. data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/append.hpp +18 -19
  390. data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/as_tuple.hpp +13 -15
  391. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +400 -5
  392. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +13 -3
  393. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +13 -3
  394. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +98 -0
  395. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +71 -7
  396. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +21 -1
  397. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +67 -34
  398. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +75 -0
  399. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +151 -0
  400. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +23 -13
  401. data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/deferred.hpp +31 -40
  402. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +1 -1
  403. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +23 -13
  404. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +1 -1
  405. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +1 -1
  406. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
  407. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +1 -1
  408. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +1 -1
  409. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +1 -1
  410. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +53 -47
  411. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +1 -1
  412. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +1 -1
  413. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +23 -13
  414. data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/prepend.hpp +16 -17
  415. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +97 -51
  416. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +51 -31
  417. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +119 -59
  418. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +1 -1
  419. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
  420. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
  421. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +1321 -277
  422. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +11 -2
  423. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +1 -1
  424. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +1 -1
  425. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +1 -1
  426. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +1 -1
  427. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +1 -1
  428. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +18 -8
  429. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +1 -1
  430. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +95 -50
  431. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +53 -31
  432. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +111 -114
  433. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +15 -3
  434. data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
  435. data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
  436. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +1 -1
  437. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +75 -1
  438. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +1 -1
  439. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +1 -1
  440. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +35 -1
  441. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +1 -1
  442. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +1 -1
  443. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +1 -1
  444. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +1 -1
  445. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +130 -64
  446. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
  447. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +1 -1
  448. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +1 -1
  449. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +1 -1
  450. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +1 -1
  451. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +1 -1
  452. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +1 -1
  453. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
  454. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +1 -1
  455. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
  456. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +1 -1
  457. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
  458. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +1 -1
  459. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
  460. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +1 -1
  461. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
  462. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
  463. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
  464. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +1 -1
  465. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
  466. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +1 -1
  467. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +1 -1
  468. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +2 -2
  469. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +1 -1
  470. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
  471. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
  472. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +1 -1
  473. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +1 -1
  474. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +1 -1
  475. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +2 -2
  476. data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +1 -1
  477. data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +47 -0
  478. data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
  479. data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
  480. data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
  481. data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +1 -1
  482. data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +1 -1
  483. data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +1 -1
  484. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +1 -1
  485. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +1 -1
  486. data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +1 -1
  487. data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +1 -1
  488. data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +1 -1
  489. data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +1 -1
  490. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +89 -16
  491. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +95 -27
  492. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +1 -1
  493. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +1 -1
  494. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +1 -1
  495. data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +128 -42
  496. data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +1 -1
  497. data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +80 -0
  498. data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +1 -1
  499. data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +37 -0
  500. data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +245 -153
  501. data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +110 -53
  502. data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +301 -166
  503. data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +37 -0
  504. data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +140 -0
  505. data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +3 -3
  506. data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +358 -0
  507. data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +1 -1
  508. data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +1 -1
  509. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +1 -1
  510. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
  511. data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +1 -1
  512. data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +1 -1
  513. data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +647 -87
  514. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +4 -1
  515. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +1 -1
  516. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
  517. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +4 -1
  518. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
  519. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +19 -1
  520. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +7 -3
  521. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +1 -1
  522. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
  523. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +1 -1
  524. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
  525. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
  526. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +1 -1
  527. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +16 -1
  528. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +1 -1
  529. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
  530. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +1 -1
  531. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +1 -1
  532. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
  533. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +140 -64
  534. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +25 -3
  535. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +1 -1
  536. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +1 -1
  537. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +1 -1
  538. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +1 -1
  539. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +154 -53
  540. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
  541. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
  542. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
  543. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +1 -1
  544. data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +1 -1
  545. data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -1
  546. data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +12 -1
  547. data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +37 -0
  548. data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
  549. data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +1 -1
  550. data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +1 -1
  551. data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -1
  552. data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +11 -11
  553. data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +10 -1
  554. data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
  555. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_free.hpp +1 -1
  556. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_member.hpp +1 -1
  557. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_free.hpp +1 -1
  558. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_member.hpp +1 -1
  559. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +1 -1
  560. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_free.hpp +1 -1
  561. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +1 -1
  562. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +1 -1
  563. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +1 -1
  564. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +1 -1
  565. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +1 -1
  566. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +1 -1
  567. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +1 -1
  568. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +1 -1
  569. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +1 -1
  570. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +1 -1
  571. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_free.hpp +1 -1
  572. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_member.hpp +1 -1
  573. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_free.hpp +1 -1
  574. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_member.hpp +1 -1
  575. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_free.hpp +1 -1
  576. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_member.hpp +1 -1
  577. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_free.hpp +1 -1
  578. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_member.hpp +1 -1
  579. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_free.hpp +1 -1
  580. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_member.hpp +1 -1
  581. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +1 -1
  582. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +1 -1
  583. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +1 -1
  584. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_free.hpp +1 -1
  585. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_member.hpp +1 -1
  586. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
  587. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +1 -1
  588. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
  589. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
  590. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
  591. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +1 -1
  592. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
  593. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
  594. data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
  595. data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +4 -3
  596. data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +10 -7
  597. data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +1 -1
  598. data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
  599. data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
  600. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +70 -12
  601. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +100 -1
  602. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +98 -29
  603. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +95 -28
  604. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +1 -1
  605. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +1 -1
  606. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +1 -1
  607. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +1 -1
  608. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +1 -1
  609. data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +37 -0
  610. data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +242 -150
  611. data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +112 -53
  612. data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
  613. data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +21 -1
  614. data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +115 -25
  615. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +8 -2
  616. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +2 -2
  617. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/addressof.hpp +5 -1
  618. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_impl.hpp +183 -64
  619. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +166 -66
  620. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +80 -11
  621. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_fp_cast.hpp +40 -11
  622. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch32.hpp +8 -1
  623. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch64.hpp +8 -1
  624. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_arm.hpp +8 -1
  625. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/classify.hpp +19 -10
  626. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +19 -5
  627. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_ppc.hpp +105 -100
  628. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_generic.hpp +1 -1
  629. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_ppc.hpp +73 -72
  630. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/futex.hpp +8 -1
  631. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_arm_asm_common.hpp +4 -0
  632. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_ppc_asm_common.hpp +33 -0
  633. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +15 -6
  634. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/alignment_of.hpp +3 -3
  635. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/has_unique_object_representations.hpp +143 -0
  636. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_enum.hpp +42 -0
  637. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_nothrow_default_constructible.hpp +46 -0
  638. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_darwin_ulock.hpp +58 -0
  639. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_windows.hpp +3 -1
  640. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_on_address.hpp +65 -0
  641. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_darwin_ulock.hpp +158 -0
  642. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_windows.hpp +55 -26
  643. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +8 -2
  644. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +2 -2
  645. data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +1 -1
  646. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/result_traits.hpp +12 -2
  647. data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +1 -1
  648. data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +6 -3
  649. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +1 -1
  650. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +1 -1
  651. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +1 -1
  652. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +2 -1
  653. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +1 -1
  654. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +1 -4
  655. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +1 -1
  656. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +4 -1
  657. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +4 -1
  658. data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +6 -1
  659. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +2 -0
  660. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +77 -0
  661. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +3 -2
  662. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +3 -0
  663. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +2 -0
  664. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +1 -0
  665. data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +4 -3
  666. data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +51 -35
  667. data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +6 -0
  668. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +14 -19
  669. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +2 -45
  670. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +23 -1
  671. data/src/cxx_supportlib/vendor-modified/boost/config/workaround.hpp +11 -0
  672. data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +12 -6
  673. data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +8 -3
  674. data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +1 -3
  675. data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +70 -59
  676. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +6 -5
  677. data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -10
  678. data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +31 -40
  679. data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +13 -10
  680. data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +17 -15
  681. data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +87 -84
  682. data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +59 -32
  683. data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +3 -1
  684. data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +46 -35
  685. data/src/cxx_supportlib/vendor-modified/boost/container/detail/hash_table.hpp +1278 -0
  686. data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_pair.hpp +91 -0
  687. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +6 -0
  688. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +88 -69
  689. data/src/cxx_supportlib/vendor-modified/boost/container/detail/multiallocation_chain.hpp +2 -2
  690. data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +2 -2
  691. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +240 -105
  692. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +2 -1
  693. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +19 -91
  694. data/src/cxx_supportlib/vendor-modified/boost/container/detail/placement_new.hpp +2 -0
  695. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_resource.hpp +3 -7
  696. data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +28 -28
  697. data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +118 -244
  698. data/src/cxx_supportlib/vendor-modified/boost/container/detail/type_traits.hpp +1 -0
  699. data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +5 -10
  700. data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +66 -38
  701. data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +28 -9
  702. data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +27 -8
  703. data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +14 -71
  704. data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +11 -8
  705. data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +9 -2
  706. data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
  707. data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +3 -3
  708. data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +23 -6
  709. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +6 -1
  710. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +3 -3
  711. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +3 -3
  712. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +3 -3
  713. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +3 -3
  714. data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +11 -8
  715. data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +32 -87
  716. data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +100 -147
  717. data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +41 -35
  718. data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +74 -46
  719. data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +207 -187
  720. data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +2 -2
  721. data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +86 -71
  722. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +40 -35
  723. data/src/cxx_supportlib/vendor-modified/boost/core/alloc_construct.hpp +7 -81
  724. data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +426 -207
  725. data/src/cxx_supportlib/vendor-modified/boost/core/allocator_traits.hpp +112 -0
  726. data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +28 -14
  727. data/src/cxx_supportlib/vendor-modified/boost/core/cmath.hpp +100 -1
  728. data/src/cxx_supportlib/vendor-modified/boost/core/default_allocator.hpp +19 -9
  729. data/src/cxx_supportlib/vendor-modified/boost/core/detail/splitmix64.hpp +3 -3
  730. data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +1256 -0
  731. data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +9 -0
  732. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +7 -1
  733. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +5 -51
  734. data/src/cxx_supportlib/vendor-modified/boost/core/noinit_adaptor.hpp +3 -0
  735. data/src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp +1 -1
  736. data/src/cxx_supportlib/vendor-modified/boost/core/pointer_traits.hpp +111 -60
  737. data/src/cxx_supportlib/vendor-modified/boost/core/quick_exit.hpp +1 -1
  738. data/src/cxx_supportlib/vendor-modified/boost/core/span.hpp +399 -0
  739. data/src/cxx_supportlib/vendor-modified/boost/core/type_name.hpp +1157 -0
  740. data/src/cxx_supportlib/vendor-modified/boost/core/verbose_terminate_handler.hpp +88 -0
  741. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +1 -1
  742. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/conversion.hpp +1 -1
  743. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_io.hpp +1 -1
  744. data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +3 -3
  745. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +38 -22
  746. data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +84 -2
  747. data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +1 -1
  748. data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +9 -0
  749. data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +16 -0
  750. data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +85 -80
  751. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +39 -39
  752. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +27 -27
  753. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +37 -40
  754. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +24 -15
  755. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +75 -6
  756. data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +2 -2
  757. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +25 -25
  758. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +3 -2
  759. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +14 -14
  760. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +4 -4
  761. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +76 -7
  762. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +1 -1
  763. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/empty_node_checker.hpp +1 -1
  764. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +0 -31
  765. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +182 -102
  766. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +8 -8
  767. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +106 -76
  768. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +3 -3
  769. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +4 -4
  770. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +3 -3
  771. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +1 -1
  772. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +3 -3
  773. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_to_value.hpp +1 -1
  774. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +18 -18
  775. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +3 -140
  776. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +1 -1
  777. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +11 -4
  778. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +2 -2
  779. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +2 -2
  780. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +6 -6
  781. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/value_functors.hpp +10 -0
  782. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +3 -3
  783. data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +1525 -882
  784. data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +2 -0
  785. data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +81 -8
  786. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +9 -8
  787. data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +2 -2
  788. data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +17 -3
  789. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +10 -8
  790. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +12 -4
  791. data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +9 -2
  792. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +36 -36
  793. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +16 -16
  794. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +32 -35
  795. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +27 -27
  796. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +14 -14
  797. data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +2 -2
  798. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +27 -20
  799. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +6 -6
  800. data/src/cxx_supportlib/vendor-modified/boost/iterator/advance.hpp +11 -0
  801. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +6 -6
  802. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_undef.hpp +1 -1
  803. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/enable_if.hpp +5 -5
  804. data/src/cxx_supportlib/vendor-modified/boost/iterator/transform_iterator.hpp +8 -4
  805. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +1 -1
  806. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +1 -1
  807. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +1 -1
  808. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +1 -1
  809. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +1 -1
  810. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +1 -1
  811. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +1 -1
  812. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +1 -1
  813. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +1 -1
  814. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +1 -1
  815. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +1 -1
  816. data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +43 -30
  817. data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +72 -56
  818. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +172 -128
  819. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/heap_sort.hpp +19 -9
  820. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +9 -0
  821. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +108 -146
  822. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +24 -15
  823. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/pdqsort.hpp +14 -4
  824. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/search.hpp +79 -0
  825. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/set_difference.hpp +8 -2
  826. data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +4 -0
  827. data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +10 -10
  828. data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +21 -0
  829. data/src/cxx_supportlib/vendor-modified/boost/move/detail/addressof.hpp +61 -0
  830. data/src/cxx_supportlib/vendor-modified/boost/move/detail/force_ptr.hpp +36 -0
  831. data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +108 -9
  832. data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +8 -32
  833. data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +6 -3
  834. data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +40 -33
  835. data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +5 -1
  836. data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +2 -0
  837. data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +1 -2
  838. data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +5 -3
  839. data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +10 -0
  840. data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +31 -28
  841. data/src/cxx_supportlib/vendor-modified/boost/mp11/algorithm.hpp +1306 -0
  842. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/config.hpp +138 -0
  843. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_append.hpp +185 -0
  844. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_copy_if.hpp +48 -0
  845. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_count.hpp +147 -0
  846. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_fold.hpp +62 -0
  847. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_front.hpp +38 -0
  848. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_list.hpp +39 -0
  849. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list.hpp +24 -0
  850. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_map_find.hpp +87 -0
  851. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_min_element.hpp +51 -0
  852. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_plus.hpp +81 -0
  853. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_remove_if.hpp +48 -0
  854. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_rename.hpp +41 -0
  855. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_void.hpp +32 -0
  856. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_with_index.hpp +385 -0
  857. data/src/cxx_supportlib/vendor-modified/boost/mp11/function.hpp +222 -0
  858. data/src/cxx_supportlib/vendor-modified/boost/mp11/integer_sequence.hpp +112 -0
  859. data/src/cxx_supportlib/vendor-modified/boost/mp11/integral.hpp +41 -0
  860. data/src/cxx_supportlib/vendor-modified/boost/mp11/list.hpp +304 -0
  861. data/src/cxx_supportlib/vendor-modified/boost/mp11/set.hpp +188 -0
  862. data/src/cxx_supportlib/vendor-modified/boost/mp11/utility.hpp +263 -0
  863. data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +16 -0
  864. data/src/cxx_supportlib/vendor-modified/boost/mpl/and.hpp +1 -1
  865. data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +3 -3
  866. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +1 -1
  867. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/template_arity.hpp +1 -1
  868. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/yes_no.hpp +2 -1
  869. data/src/cxx_supportlib/vendor-modified/boost/mpl/bitand.hpp +1 -1
  870. data/src/cxx_supportlib/vendor-modified/boost/mpl/bitor.hpp +1 -1
  871. data/src/cxx_supportlib/vendor-modified/boost/mpl/or.hpp +1 -1
  872. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +1 -1
  873. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_hash.hpp +49 -0
  874. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +34 -23
  875. data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +85 -24
  876. data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +3 -2
  877. data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +22 -9
  878. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/loongarch.h +41 -0
  879. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +2 -2
  880. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +1 -0
  881. data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +1 -1
  882. data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +2 -2
  883. data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +1 -0
  884. data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
  885. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +8 -1
  886. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/icu.hpp +1 -1
  887. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/pattern_except.hpp +3 -2
  888. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +1 -0
  889. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_creator.hpp +4 -3
  890. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +23 -13
  891. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/icu.hpp +1 -1
  892. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +2 -0
  893. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/pattern_except.hpp +3 -2
  894. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_common.hpp +6 -0
  895. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_non_recursive.hpp +3 -1
  896. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +235 -104
  897. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
  898. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +4 -2
  899. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +1 -1
  900. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +1 -1
  901. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +1 -1
  902. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +1 -1
  903. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +3 -6
  904. data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +2 -1
  905. data/src/cxx_supportlib/vendor-modified/boost/system/detail/append_int.hpp +32 -0
  906. data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +18 -2
  907. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +31 -7
  908. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +78 -21
  909. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +211 -42
  910. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +77 -19
  911. data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +3 -0
  912. data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category.hpp +9 -67
  913. data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category_impl.hpp +97 -0
  914. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +5 -17
  915. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_message.hpp +71 -0
  916. data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +7 -0
  917. data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +30 -59
  918. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +1 -1
  919. data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +9 -0
  920. data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +5 -0
  921. data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +103 -5
  922. data/src/cxx_supportlib/vendor-modified/boost/token_functions.hpp +2 -2
  923. data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +22 -21
  924. data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +1 -1
  925. data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +1 -1
  926. data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +1 -1
  927. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +4 -1
  928. data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +1 -1
  929. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complete.hpp +2 -1
  930. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_function.hpp +1 -1
  931. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_function_pointer.hpp +1 -1
  932. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +819 -0
  933. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +2 -1
  934. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +1647 -2909
  935. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +8 -14
  936. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +262 -0
  937. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +8 -13
  938. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +301 -142
  939. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +10 -1
  940. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +199 -76
  941. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +10 -1
  942. data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +2 -1
  943. data/src/cxx_supportlib/vendor-modified/boost/utility/binary.hpp +3 -2
  944. data/src/cxx_supportlib/vendor-modified/boost/utility/in_place_factory.hpp +6 -0
  945. data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +13 -2
  946. data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +6 -2
  947. data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +24 -3
  948. data/src/cxx_supportlib/vendor-modified/boost/utility/typed_in_place_factory.hpp +6 -1
  949. data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +5 -1
  950. data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
  951. data/src/cxx_supportlib/vendor-modified/jsoncpp/json-forwards.h +261 -143
  952. data/src/cxx_supportlib/vendor-modified/jsoncpp/json.h +947 -763
  953. data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +1487 -1477
  954. data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +1 -1
  955. data/src/ruby_supportlib/phusion_passenger/platform_info/ruby.rb +2 -2
  956. data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +9 -0
  957. data/src/ruby_supportlib/phusion_passenger.rb +1 -1
  958. metadata +129 -14
  959. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +0 -42
  960. data/src/cxx_supportlib/vendor-modified/boost/checked_delete.hpp +0 -17
  961. data/src/cxx_supportlib/vendor-modified/boost/pointer_to_other.hpp +0 -55
  962. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/indexed_bit_flag.hpp +0 -54
  963. 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-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com)
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 handler The handler to be called when the wait operation completes.
1200
- * Copies will be made of the handler as required. The function signature of
1201
- * the handler must be:
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. On
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
- WaitHandler BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
1242
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(WaitHandler,
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(WaitHandler) handler
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<WaitHandler, void (boost::system::error_code)>(
1249
- initiate_async_wait(this), handler, w);
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. The function call always returns immediately.
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 handler The handler to be called when the accept operation
1328
- * completes. Copies will be made of the handler as required. The function
1329
- * signature of the handler must be:
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. On
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
- AcceptHandler BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
1369
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(AcceptHandler,
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(AcceptHandler) handler
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<AcceptHandler, void (boost::system::error_code)>(
1379
- initiate_async_accept(this), handler,
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. The
1457
- * function call always returns immediately.
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 handler The handler to be called when the accept operation
1469
- * completes. Copies will be made of the handler as required. The function
1470
- * signature of the handler must be:
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. On
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
- AcceptHandler BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
1492
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(AcceptHandler,
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(AcceptHandler) handler
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<AcceptHandler, void (boost::system::error_code)>(
1500
- initiate_async_accept(this), handler, &peer, &peer_endpoint);
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. The
1573
- * function call always returns immediately.
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 handler The handler to be called when the accept operation
1579
- * completes. Copies will be made of the handler as required. The function
1580
- * signature of the handler must be:
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. On
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)) MoveAcceptHandler
1673
+ executor_type>::other)) MoveAcceptToken
1625
1674
  BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
1626
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(MoveAcceptHandler,
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(MoveAcceptHandler) handler
1680
+ BOOST_ASIO_MOVE_ARG(MoveAcceptToken) token
1632
1681
  BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type))
1633
- {
1634
- return async_initiate<MoveAcceptHandler,
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), handler,
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. The
1808
- * function call always returns immediately.
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 handler The handler to be called when the accept operation
1817
- * completes. Copies will be made of the handler as required. The function
1818
- * signature of the handler must be:
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
- * const boost::system::error_code& error, // Result of operation.
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 // On success, the newly accepted socket.
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. On
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)) MoveAcceptHandler
1928
+ Executor1>::other)) MoveAcceptToken
1861
1929
  BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
1862
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(MoveAcceptHandler,
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(MoveAcceptHandler) handler
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
- typedef typename Protocol::socket::template rebind_executor<
1875
- Executor1>::other other_socket_type;
1876
-
1877
- return async_initiate<MoveAcceptHandler,
1878
- void (boost::system::error_code, other_socket_type)>(
1879
- initiate_async_move_accept(this), handler,
1880
- ex, static_cast<endpoint_type*>(0),
1881
- static_cast<other_socket_type*>(0));
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. The
1887
- * function call always returns immediately.
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 handler The handler to be called when the accept operation
1896
- * completes. Copies will be made of the handler as required. The function
1897
- * signature of the handler must be:
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
- * const boost::system::error_code& error, // Result of operation.
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. On
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)) MoveAcceptHandler
2027
+ typename ExecutionContext::executor_type>::other)) MoveAcceptToken
1941
2028
  BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
1942
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(MoveAcceptHandler,
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(MoveAcceptHandler) handler
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
- typedef typename Protocol::socket::template rebind_executor<
1954
- typename ExecutionContext::executor_type>::other other_socket_type;
1955
-
1956
- return async_initiate<MoveAcceptHandler,
1957
- void (boost::system::error_code, other_socket_type)>(
1958
- initiate_async_move_accept(this), handler,
1959
- context.get_executor(), static_cast<endpoint_type*>(0),
1960
- static_cast<other_socket_type*>(0));
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. The
2041
- * function call always returns immediately.
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 handler The handler to be called when the accept operation
2052
- * completes. Copies will be made of the handler as required. The function
2053
- * signature of the handler must be:
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. On
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)) MoveAcceptHandler
2203
+ executor_type>::other)) MoveAcceptToken
2099
2204
  BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
2100
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(MoveAcceptHandler,
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(MoveAcceptHandler) handler
2210
+ BOOST_ASIO_MOVE_ARG(MoveAcceptToken) token
2106
2211
  BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type))
2107
- {
2108
- return async_initiate<MoveAcceptHandler,
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), handler,
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. The
2308
- * function call always returns immediately.
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 handler The handler to be called when the accept operation
2322
- * completes. Copies will be made of the handler as required. The function
2323
- * signature of the handler must be:
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
- * const boost::system::error_code& error, // Result of operation.
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 // On success, the newly accepted socket.
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. On
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)) MoveAcceptHandler
2490
+ Executor1>::other)) MoveAcceptToken
2367
2491
  BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
2368
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(MoveAcceptHandler,
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(MoveAcceptHandler) handler
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
- typedef typename Protocol::socket::template rebind_executor<
2381
- Executor1>::other other_socket_type;
2382
-
2383
- return async_initiate<MoveAcceptHandler,
2384
- void (boost::system::error_code, other_socket_type)>(
2385
- initiate_async_move_accept(this), handler,
2386
- ex, &peer_endpoint,
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. The
2393
- * function call always returns immediately.
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 handler The handler to be called when the accept operation
2407
- * completes. Copies will be made of the handler as required. The function
2408
- * signature of the handler must be:
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
- * const boost::system::error_code& error, // Result of operation.
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. On
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)) MoveAcceptHandler
2593
+ typename ExecutionContext::executor_type>::other)) MoveAcceptToken
2453
2594
  BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
2454
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(MoveAcceptHandler,
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(MoveAcceptHandler) handler
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
- typedef typename Protocol::socket::template rebind_executor<
2467
- typename ExecutionContext::executor_type>::other other_socket_type;
2468
-
2469
- return async_initiate<MoveAcceptHandler,
2470
- void (boost::system::error_code, other_socket_type)>(
2471
- initiate_async_move_accept(this), handler,
2472
- context.get_executor(), &peer_endpoint,
2473
- static_cast<other_socket_type*>(0));
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_;