passenger 6.0.11 → 6.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +24 -1
- data/CONTRIBUTORS +3 -0
- data/src/agent/Core/Config.h +1 -1
- data/src/agent/Core/Controller/CheckoutSession.cpp +24 -13
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/Core/Controller/InternalUtils.cpp +32 -6
- data/src/agent/Core/Controller.h +4 -1
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +53 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +57 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +789 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +723 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +191 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +361 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +176 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +30 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +209 -76
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +149 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +14 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +21 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +30 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +15 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +90 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +133 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +1057 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +607 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +160 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_traits.hpp +185 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +181 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/append.hpp +219 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +14 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_tuple.hpp +248 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/deferred.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +434 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/prepend.hpp +219 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +608 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +284 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +344 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +23 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +23 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +66 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +55 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +68 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +98 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +71 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +210 -266
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +248 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +11 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +71 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +46 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +2 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +23 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +36 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +14 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +73 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +235 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +7 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +17 -13
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +31 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +20 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +46 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +45 -38
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +83 -83
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +31 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +68 -68
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +72 -62
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +19 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +19 -19
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +2 -50
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +71 -70
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +15 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +84 -82
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +26 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +93 -93
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +51 -51
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +104 -104
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +91 -91
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +46 -46
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +31 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +51 -51
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +97 -97
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +63 -63
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +112 -31
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +22 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +59 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +9 -11
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +34 -3
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +378 -36
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +97 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/{to_std_category.hpp → std_category.hpp} +5 -55
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +20 -9
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +8 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +6 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +12 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +5 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +21 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +13 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +3 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +4 -0
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +3 -2
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +8 -1
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +6 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +8 -0
- data/src/ruby_supportlib/phusion_passenger/request_handler.rb +4 -1
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- metadata +39 -4
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_generic_value.hpp +0 -125
@@ -40,13 +40,64 @@ struct is_completion_signature<R(Args...)> : true_type
|
|
40
40
|
{
|
41
41
|
};
|
42
42
|
|
43
|
+
#if defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
44
|
+
|
45
|
+
template <typename R, typename... Args>
|
46
|
+
struct is_completion_signature<R(Args...) &> : true_type
|
47
|
+
{
|
48
|
+
};
|
49
|
+
|
50
|
+
template <typename R, typename... Args>
|
51
|
+
struct is_completion_signature<R(Args...) &&> : true_type
|
52
|
+
{
|
53
|
+
};
|
54
|
+
|
55
|
+
# if defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
56
|
+
|
57
|
+
template <typename R, typename... Args>
|
58
|
+
struct is_completion_signature<R(Args...) noexcept> : true_type
|
59
|
+
{
|
60
|
+
};
|
61
|
+
|
62
|
+
template <typename R, typename... Args>
|
63
|
+
struct is_completion_signature<R(Args...) & noexcept> : true_type
|
64
|
+
{
|
65
|
+
};
|
66
|
+
|
67
|
+
template <typename R, typename... Args>
|
68
|
+
struct is_completion_signature<R(Args...) && noexcept> : true_type
|
69
|
+
{
|
70
|
+
};
|
71
|
+
|
72
|
+
# endif // defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
73
|
+
#endif // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
74
|
+
|
75
|
+
template <typename... T>
|
76
|
+
struct are_completion_signatures : false_type
|
77
|
+
{
|
78
|
+
};
|
79
|
+
|
80
|
+
template <typename T0>
|
81
|
+
struct are_completion_signatures<T0>
|
82
|
+
: is_completion_signature<T0>
|
83
|
+
{
|
84
|
+
};
|
85
|
+
|
86
|
+
template <typename T0, typename... TN>
|
87
|
+
struct are_completion_signatures<T0, TN...>
|
88
|
+
: integral_constant<bool, (
|
89
|
+
is_completion_signature<T0>::value
|
90
|
+
&& are_completion_signatures<TN...>::value)>
|
91
|
+
{
|
92
|
+
};
|
93
|
+
|
43
94
|
template <typename T, typename... Args>
|
44
|
-
BOOST_ASIO_CONCEPT callable_with = requires(T t, Args&&... args)
|
95
|
+
BOOST_ASIO_CONCEPT callable_with = requires(T&& t, Args&&... args)
|
45
96
|
{
|
46
|
-
t(static_cast<Args&&>(args)...);
|
97
|
+
static_cast<T&&>(t)(static_cast<Args&&>(args)...);
|
47
98
|
};
|
48
99
|
|
49
|
-
template <typename T, typename
|
100
|
+
template <typename T, typename... Signatures>
|
50
101
|
struct is_completion_handler_for : false_type
|
51
102
|
{
|
52
103
|
};
|
@@ -57,6 +108,51 @@ struct is_completion_handler_for<T, R(Args...)>
|
|
57
108
|
{
|
58
109
|
};
|
59
110
|
|
111
|
+
#if defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
112
|
+
|
113
|
+
template <typename T, typename R, typename... Args>
|
114
|
+
struct is_completion_handler_for<T, R(Args...) &>
|
115
|
+
: integral_constant<bool, (callable_with<T&, Args...>)>
|
116
|
+
{
|
117
|
+
};
|
118
|
+
|
119
|
+
template <typename T, typename R, typename... Args>
|
120
|
+
struct is_completion_handler_for<T, R(Args...) &&>
|
121
|
+
: integral_constant<bool, (callable_with<T&&, Args...>)>
|
122
|
+
{
|
123
|
+
};
|
124
|
+
|
125
|
+
# if defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
126
|
+
|
127
|
+
template <typename T, typename R, typename... Args>
|
128
|
+
struct is_completion_handler_for<T, R(Args...) noexcept>
|
129
|
+
: integral_constant<bool, (callable_with<T, Args...>)>
|
130
|
+
{
|
131
|
+
};
|
132
|
+
|
133
|
+
template <typename T, typename R, typename... Args>
|
134
|
+
struct is_completion_handler_for<T, R(Args...) & noexcept>
|
135
|
+
: integral_constant<bool, (callable_with<T&, Args...>)>
|
136
|
+
{
|
137
|
+
};
|
138
|
+
|
139
|
+
template <typename T, typename R, typename... Args>
|
140
|
+
struct is_completion_handler_for<T, R(Args...) && noexcept>
|
141
|
+
: integral_constant<bool, (callable_with<T&&, Args...>)>
|
142
|
+
{
|
143
|
+
};
|
144
|
+
|
145
|
+
# endif // defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
146
|
+
#endif // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
147
|
+
|
148
|
+
template <typename T, typename Signature0, typename... SignatureN>
|
149
|
+
struct is_completion_handler_for<T, Signature0, SignatureN...>
|
150
|
+
: integral_constant<bool, (
|
151
|
+
is_completion_handler_for<T, Signature0>::value
|
152
|
+
&& is_completion_handler_for<T, SignatureN...>::value)>
|
153
|
+
{
|
154
|
+
};
|
155
|
+
|
60
156
|
} // namespace detail
|
61
157
|
|
62
158
|
template <typename T>
|
@@ -66,83 +162,311 @@ BOOST_ASIO_CONCEPT completion_signature =
|
|
66
162
|
#define BOOST_ASIO_COMPLETION_SIGNATURE \
|
67
163
|
::boost::asio::completion_signature
|
68
164
|
|
69
|
-
template <typename T, typename
|
165
|
+
template <typename T, typename... Signatures>
|
70
166
|
BOOST_ASIO_CONCEPT completion_handler_for =
|
71
|
-
detail::
|
72
|
-
&& detail::is_completion_handler_for<T,
|
167
|
+
detail::are_completion_signatures<Signatures...>::value
|
168
|
+
&& detail::is_completion_handler_for<T, Signatures...>::value;
|
73
169
|
|
74
|
-
#define BOOST_ASIO_COMPLETION_HANDLER_FOR(
|
75
|
-
::boost::asio::completion_handler_for<
|
170
|
+
#define BOOST_ASIO_COMPLETION_HANDLER_FOR(sig) \
|
171
|
+
::boost::asio::completion_handler_for<sig>
|
172
|
+
#define BOOST_ASIO_COMPLETION_HANDLER_FOR2(sig0, sig1) \
|
173
|
+
::boost::asio::completion_handler_for<sig0, sig1>
|
174
|
+
#define BOOST_ASIO_COMPLETION_HANDLER_FOR3(sig0, sig1, sig2) \
|
175
|
+
::boost::asio::completion_handler_for<sig0, sig1, sig2>
|
76
176
|
|
77
177
|
#else // defined(BOOST_ASIO_HAS_CONCEPTS)
|
78
178
|
// && defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
79
179
|
// && defined(BOOST_ASIO_HAS_DECLTYPE)
|
80
180
|
|
81
181
|
#define BOOST_ASIO_COMPLETION_SIGNATURE typename
|
82
|
-
#define BOOST_ASIO_COMPLETION_HANDLER_FOR(
|
182
|
+
#define BOOST_ASIO_COMPLETION_HANDLER_FOR(sig) typename
|
183
|
+
#define BOOST_ASIO_COMPLETION_HANDLER_FOR2(sig0, sig1) typename
|
184
|
+
#define BOOST_ASIO_COMPLETION_HANDLER_FOR3(sig0, sig1, sig2) typename
|
83
185
|
|
84
186
|
#endif // defined(BOOST_ASIO_HAS_CONCEPTS)
|
85
187
|
// && defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
86
188
|
// && defined(BOOST_ASIO_HAS_DECLTYPE)
|
87
189
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
190
|
+
namespace detail {
|
191
|
+
|
192
|
+
template <typename T>
|
193
|
+
struct is_simple_completion_signature : false_type
|
194
|
+
{
|
195
|
+
};
|
196
|
+
|
197
|
+
template <typename T>
|
198
|
+
struct simple_completion_signature;
|
199
|
+
|
200
|
+
#if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
201
|
+
|
202
|
+
template <typename R, typename... Args>
|
203
|
+
struct is_simple_completion_signature<R(Args...)> : true_type
|
204
|
+
{
|
205
|
+
};
|
206
|
+
|
207
|
+
template <typename... Signatures>
|
208
|
+
struct are_simple_completion_signatures : false_type
|
209
|
+
{
|
210
|
+
};
|
211
|
+
|
212
|
+
template <typename Sig0>
|
213
|
+
struct are_simple_completion_signatures<Sig0>
|
214
|
+
: is_simple_completion_signature<Sig0>
|
215
|
+
{
|
216
|
+
};
|
217
|
+
|
218
|
+
template <typename Sig0, typename... SigN>
|
219
|
+
struct are_simple_completion_signatures<Sig0, SigN...>
|
220
|
+
: integral_constant<bool, (
|
221
|
+
is_simple_completion_signature<Sig0>::value
|
222
|
+
&& are_simple_completion_signatures<SigN...>::value)>
|
223
|
+
{
|
224
|
+
};
|
225
|
+
|
226
|
+
template <typename R, typename... Args>
|
227
|
+
struct simple_completion_signature<R(Args...)>
|
228
|
+
{
|
229
|
+
typedef R type(Args...);
|
230
|
+
};
|
231
|
+
|
232
|
+
#if defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
233
|
+
|
234
|
+
template <typename R, typename... Args>
|
235
|
+
struct simple_completion_signature<R(Args...) &>
|
236
|
+
{
|
237
|
+
typedef R type(Args...);
|
238
|
+
};
|
239
|
+
|
240
|
+
template <typename R, typename... Args>
|
241
|
+
struct simple_completion_signature<R(Args...) &&>
|
242
|
+
{
|
243
|
+
typedef R type(Args...);
|
244
|
+
};
|
245
|
+
|
246
|
+
# if defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
247
|
+
|
248
|
+
template <typename R, typename... Args>
|
249
|
+
struct simple_completion_signature<R(Args...) noexcept>
|
250
|
+
{
|
251
|
+
typedef R type(Args...);
|
252
|
+
};
|
253
|
+
|
254
|
+
template <typename R, typename... Args>
|
255
|
+
struct simple_completion_signature<R(Args...) & noexcept>
|
256
|
+
{
|
257
|
+
typedef R type(Args...);
|
258
|
+
};
|
259
|
+
|
260
|
+
template <typename R, typename... Args>
|
261
|
+
struct simple_completion_signature<R(Args...) && noexcept>
|
262
|
+
{
|
263
|
+
typedef R type(Args...);
|
264
|
+
};
|
265
|
+
|
266
|
+
# endif // defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
267
|
+
#endif // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
268
|
+
|
269
|
+
#else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
270
|
+
|
271
|
+
template <typename R>
|
272
|
+
struct is_simple_completion_signature<R()> : true_type
|
273
|
+
{
|
274
|
+
};
|
275
|
+
|
276
|
+
#define BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF(n) \
|
277
|
+
template <typename R, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
278
|
+
struct is_simple_completion_signature<R(BOOST_ASIO_VARIADIC_TARGS(n))> \
|
279
|
+
: true_type \
|
280
|
+
{ \
|
281
|
+
}; \
|
282
|
+
/**/
|
283
|
+
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF)
|
284
|
+
#undef BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF
|
285
|
+
|
286
|
+
template <typename Sig0 = void, typename Sig1 = void,
|
287
|
+
typename Sig2 = void, typename = void>
|
288
|
+
struct are_simple_completion_signatures : false_type
|
289
|
+
{
|
290
|
+
};
|
291
|
+
|
292
|
+
template <typename Sig0>
|
293
|
+
struct are_simple_completion_signatures<Sig0>
|
294
|
+
: is_simple_completion_signature<Sig0>
|
295
|
+
{
|
296
|
+
};
|
297
|
+
|
298
|
+
template <typename Sig0, typename Sig1>
|
299
|
+
struct are_simple_completion_signatures<Sig0, Sig1>
|
300
|
+
: integral_constant<bool,
|
301
|
+
(is_simple_completion_signature<Sig0>::value
|
302
|
+
&& is_simple_completion_signature<Sig1>::value)>
|
303
|
+
{
|
304
|
+
};
|
305
|
+
|
306
|
+
template <typename Sig0, typename Sig1, typename Sig2>
|
307
|
+
struct are_simple_completion_signatures<Sig0, Sig1, Sig2>
|
308
|
+
: integral_constant<bool,
|
309
|
+
(is_simple_completion_signature<Sig0>::value
|
310
|
+
&& is_simple_completion_signature<Sig1>::value
|
311
|
+
&& is_simple_completion_signature<Sig2>::value)>
|
312
|
+
{
|
313
|
+
};
|
314
|
+
|
315
|
+
template <typename R>
|
316
|
+
struct simple_completion_signature<R()>
|
317
|
+
{
|
318
|
+
typedef R type();
|
319
|
+
};
|
320
|
+
|
321
|
+
#define BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF(n) \
|
322
|
+
template <typename R, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
323
|
+
struct simple_completion_signature<R(BOOST_ASIO_VARIADIC_TARGS(n))> \
|
324
|
+
{ \
|
325
|
+
typedef R type(BOOST_ASIO_VARIADIC_TARGS(n)); \
|
326
|
+
}; \
|
327
|
+
/**/
|
328
|
+
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF)
|
329
|
+
#undef BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF
|
330
|
+
|
331
|
+
#if defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
332
|
+
|
333
|
+
template <typename R>
|
334
|
+
struct simple_completion_signature<R() &>
|
335
|
+
{
|
336
|
+
typedef R type();
|
337
|
+
};
|
338
|
+
|
339
|
+
template <typename R>
|
340
|
+
struct simple_completion_signature<R() &&>
|
341
|
+
{
|
342
|
+
typedef R type();
|
343
|
+
};
|
344
|
+
|
345
|
+
#define BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF(n) \
|
346
|
+
template <typename R, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
347
|
+
struct simple_completion_signature< \
|
348
|
+
R(BOOST_ASIO_VARIADIC_TARGS(n)) &> \
|
349
|
+
{ \
|
350
|
+
typedef R type(BOOST_ASIO_VARIADIC_TARGS(n)); \
|
351
|
+
}; \
|
352
|
+
\
|
353
|
+
template <typename R, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
354
|
+
struct simple_completion_signature< \
|
355
|
+
R(BOOST_ASIO_VARIADIC_TARGS(n)) &&> \
|
356
|
+
{ \
|
357
|
+
typedef R type(BOOST_ASIO_VARIADIC_TARGS(n)); \
|
358
|
+
}; \
|
359
|
+
/**/
|
360
|
+
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF)
|
361
|
+
#undef BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF
|
362
|
+
|
363
|
+
# if defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
364
|
+
|
365
|
+
template <typename R>
|
366
|
+
struct simple_completion_signature<R() noexcept>
|
367
|
+
{
|
368
|
+
typedef R type();
|
369
|
+
};
|
370
|
+
|
371
|
+
template <typename R>
|
372
|
+
struct simple_completion_signature<R() & noexcept>
|
373
|
+
{
|
374
|
+
typedef R type();
|
375
|
+
};
|
376
|
+
|
377
|
+
template <typename R>
|
378
|
+
struct simple_completion_signature<R() && noexcept>
|
379
|
+
{
|
380
|
+
typedef R type();
|
381
|
+
};
|
382
|
+
|
383
|
+
#define BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF(n) \
|
384
|
+
template <typename R, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
385
|
+
struct simple_completion_signature< \
|
386
|
+
R(BOOST_ASIO_VARIADIC_TARGS(n)) noexcept> \
|
387
|
+
{ \
|
388
|
+
typedef R type(BOOST_ASIO_VARIADIC_TARGS(n)); \
|
389
|
+
}; \
|
390
|
+
\
|
391
|
+
template <typename R, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
392
|
+
struct simple_completion_signature< \
|
393
|
+
R(BOOST_ASIO_VARIADIC_TARGS(n)) & noexcept> \
|
394
|
+
{ \
|
395
|
+
typedef R type(BOOST_ASIO_VARIADIC_TARGS(n)); \
|
396
|
+
}; \
|
397
|
+
\
|
398
|
+
template <typename R, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
399
|
+
struct simple_completion_signature< \
|
400
|
+
R(BOOST_ASIO_VARIADIC_TARGS(n)) && noexcept> \
|
401
|
+
{ \
|
402
|
+
typedef R type(BOOST_ASIO_VARIADIC_TARGS(n)); \
|
403
|
+
}; \
|
404
|
+
/**/
|
405
|
+
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF)
|
406
|
+
#undef BOOST_ASIO_PRIVATE_SIMPLE_SIG_DEF
|
407
|
+
|
408
|
+
# endif // defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
409
|
+
#endif // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
410
|
+
|
411
|
+
#endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
412
|
+
|
413
|
+
#if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES) \
|
414
|
+
|| defined(GENERATING_DOCUMENTATION)
|
415
|
+
|
416
|
+
# define BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS \
|
417
|
+
BOOST_ASIO_COMPLETION_SIGNATURE... Signatures
|
418
|
+
|
419
|
+
# define BOOST_ASIO_COMPLETION_SIGNATURES_TSPECPARAMS \
|
420
|
+
BOOST_ASIO_COMPLETION_SIGNATURE... Signatures
|
421
|
+
|
422
|
+
# define BOOST_ASIO_COMPLETION_SIGNATURES_TARGS Signatures...
|
423
|
+
|
424
|
+
# define BOOST_ASIO_COMPLETION_SIGNATURES_TSIMPLEARGS \
|
425
|
+
typename boost::asio::detail::simple_completion_signature< \
|
426
|
+
Signatures>::type...
|
427
|
+
|
428
|
+
#else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
429
|
+
// || defined(GENERATING_DOCUMENTATION)
|
430
|
+
|
431
|
+
# define BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS \
|
432
|
+
typename Sig0 = void, \
|
433
|
+
typename Sig1 = void, \
|
434
|
+
typename Sig2 = void
|
435
|
+
|
436
|
+
# define BOOST_ASIO_COMPLETION_SIGNATURES_TSPECPARAMS \
|
437
|
+
typename Sig0, \
|
438
|
+
typename Sig1, \
|
439
|
+
typename Sig2
|
440
|
+
|
441
|
+
# define BOOST_ASIO_COMPLETION_SIGNATURES_TARGS Sig0, Sig1, Sig2
|
442
|
+
|
443
|
+
# define BOOST_ASIO_COMPLETION_SIGNATURES_TSIMPLEARGS \
|
444
|
+
typename ::boost::asio::detail::simple_completion_signature<Sig0>::type, \
|
445
|
+
typename ::boost::asio::detail::simple_completion_signature<Sig1>::type, \
|
446
|
+
typename ::boost::asio::detail::simple_completion_signature<Sig2>::type
|
447
|
+
|
448
|
+
#endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
449
|
+
// || defined(GENERATING_DOCUMENTATION)
|
450
|
+
|
451
|
+
template <typename CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS>
|
452
|
+
class completion_handler_async_result
|
108
453
|
{
|
109
454
|
public:
|
110
|
-
/// The concrete completion handler type for the specific signature.
|
111
455
|
typedef CompletionToken completion_handler_type;
|
112
|
-
|
113
|
-
/// The return type of the initiating function.
|
114
456
|
typedef void return_type;
|
115
457
|
|
116
|
-
|
117
|
-
/**
|
118
|
-
* When using a specalised async_result, the constructor has an opportunity
|
119
|
-
* to initialise some state associated with the completion handler, which is
|
120
|
-
* then returned from the initiating function.
|
121
|
-
*/
|
122
|
-
explicit async_result(completion_handler_type& h)
|
458
|
+
explicit completion_handler_async_result(completion_handler_type&)
|
123
459
|
{
|
124
|
-
(void)h;
|
125
460
|
}
|
126
461
|
|
127
|
-
/// Obtain the value to be returned from the initiating function.
|
128
462
|
return_type get()
|
129
463
|
{
|
130
464
|
}
|
131
465
|
|
132
|
-
#if defined(
|
133
|
-
|
134
|
-
/// Initiate the asynchronous operation that will produce the result, and
|
135
|
-
/// obtain the value to be returned from the initiating function.
|
136
|
-
template <typename Initiation, typename RawCompletionToken, typename... Args>
|
137
|
-
static return_type initiate(
|
138
|
-
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
139
|
-
BOOST_ASIO_MOVE_ARG(RawCompletionToken) token,
|
140
|
-
BOOST_ASIO_MOVE_ARG(Args)... args);
|
141
|
-
|
142
|
-
#elif defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
466
|
+
#if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
143
467
|
|
144
468
|
template <typename Initiation,
|
145
|
-
BOOST_ASIO_COMPLETION_HANDLER_FOR(
|
469
|
+
BOOST_ASIO_COMPLETION_HANDLER_FOR(Signatures...) RawCompletionToken,
|
146
470
|
typename... Args>
|
147
471
|
static return_type initiate(
|
148
472
|
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
@@ -156,8 +480,7 @@ public:
|
|
156
480
|
|
157
481
|
#else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
158
482
|
|
159
|
-
template <typename Initiation,
|
160
|
-
BOOST_ASIO_COMPLETION_HANDLER_FOR(Signature) RawCompletionToken>
|
483
|
+
template <typename Initiation, typename RawCompletionToken>
|
161
484
|
static return_type initiate(
|
162
485
|
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
163
486
|
BOOST_ASIO_MOVE_ARG(RawCompletionToken) token)
|
@@ -168,7 +491,7 @@ public:
|
|
168
491
|
|
169
492
|
#define BOOST_ASIO_PRIVATE_INITIATE_DEF(n) \
|
170
493
|
template <typename Initiation, \
|
171
|
-
|
494
|
+
typename RawCompletionToken, \
|
172
495
|
BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
173
496
|
static return_type initiate( \
|
174
497
|
BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
|
@@ -185,31 +508,141 @@ public:
|
|
185
508
|
|
186
509
|
#endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
187
510
|
|
511
|
+
private:
|
512
|
+
completion_handler_async_result(
|
513
|
+
const completion_handler_async_result&) BOOST_ASIO_DELETED;
|
514
|
+
completion_handler_async_result& operator=(
|
515
|
+
const completion_handler_async_result&) BOOST_ASIO_DELETED;
|
516
|
+
};
|
517
|
+
|
518
|
+
} // namespace detail
|
519
|
+
|
520
|
+
#if defined(GENERATING_DOCUMENTATION)
|
521
|
+
|
522
|
+
/// An interface for customising the behaviour of an initiating function.
|
523
|
+
/**
|
524
|
+
* The async_result traits class is used for determining:
|
525
|
+
*
|
526
|
+
* @li the concrete completion handler type to be called at the end of the
|
527
|
+
* asynchronous operation;
|
528
|
+
*
|
529
|
+
* @li the initiating function return type; and
|
530
|
+
*
|
531
|
+
* @li how the return value of the initiating function is obtained.
|
532
|
+
*
|
533
|
+
* The trait allows the handler and return types to be determined at the point
|
534
|
+
* where the specific completion handler signature is known.
|
535
|
+
*
|
536
|
+
* This template may be specialised for user-defined completion token types.
|
537
|
+
* The primary template assumes that the CompletionToken is the completion
|
538
|
+
* handler.
|
539
|
+
*/
|
540
|
+
template <typename CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS>
|
541
|
+
class async_result
|
542
|
+
{
|
543
|
+
public:
|
544
|
+
/// The concrete completion handler type for the specific signature.
|
545
|
+
typedef CompletionToken completion_handler_type;
|
546
|
+
|
547
|
+
/// The return type of the initiating function.
|
548
|
+
typedef void return_type;
|
549
|
+
|
550
|
+
/// Construct an async result from a given handler.
|
551
|
+
/**
|
552
|
+
* When using a specalised async_result, the constructor has an opportunity
|
553
|
+
* to initialise some state associated with the completion handler, which is
|
554
|
+
* then returned from the initiating function.
|
555
|
+
*/
|
556
|
+
explicit async_result(completion_handler_type& h);
|
557
|
+
|
558
|
+
/// Obtain the value to be returned from the initiating function.
|
559
|
+
return_type get();
|
560
|
+
|
561
|
+
/// Initiate the asynchronous operation that will produce the result, and
|
562
|
+
/// obtain the value to be returned from the initiating function.
|
563
|
+
template <typename Initiation, typename RawCompletionToken, typename... Args>
|
564
|
+
static return_type initiate(
|
565
|
+
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
566
|
+
BOOST_ASIO_MOVE_ARG(RawCompletionToken) token,
|
567
|
+
BOOST_ASIO_MOVE_ARG(Args)... args);
|
568
|
+
|
569
|
+
private:
|
570
|
+
async_result(const async_result&) BOOST_ASIO_DELETED;
|
571
|
+
async_result& operator=(const async_result&) BOOST_ASIO_DELETED;
|
572
|
+
};
|
573
|
+
|
574
|
+
#else // defined(GENERATING_DOCUMENTATION)
|
575
|
+
|
576
|
+
#if defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
577
|
+
|
578
|
+
template <typename CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS>
|
579
|
+
class async_result :
|
580
|
+
public conditional<
|
581
|
+
detail::are_simple_completion_signatures<
|
582
|
+
BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>::value,
|
583
|
+
detail::completion_handler_async_result<
|
584
|
+
CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>,
|
585
|
+
async_result<CompletionToken,
|
586
|
+
BOOST_ASIO_COMPLETION_SIGNATURES_TSIMPLEARGS>
|
587
|
+
>::type
|
588
|
+
{
|
589
|
+
public:
|
590
|
+
typedef typename conditional<
|
591
|
+
detail::are_simple_completion_signatures<
|
592
|
+
BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>::value,
|
593
|
+
detail::completion_handler_async_result<
|
594
|
+
CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>,
|
595
|
+
async_result<CompletionToken,
|
596
|
+
BOOST_ASIO_COMPLETION_SIGNATURES_TSIMPLEARGS>
|
597
|
+
>::type base_type;
|
598
|
+
|
599
|
+
using base_type::base_type;
|
600
|
+
|
601
|
+
private:
|
602
|
+
async_result(const async_result&) BOOST_ASIO_DELETED;
|
603
|
+
async_result& operator=(const async_result&) BOOST_ASIO_DELETED;
|
604
|
+
};
|
605
|
+
|
606
|
+
#else // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
607
|
+
|
608
|
+
template <typename CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS>
|
609
|
+
class async_result :
|
610
|
+
public detail::completion_handler_async_result<
|
611
|
+
CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>
|
612
|
+
{
|
613
|
+
public:
|
614
|
+
explicit async_result(CompletionToken& h)
|
615
|
+
: detail::completion_handler_async_result<
|
616
|
+
CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>(h)
|
617
|
+
{
|
618
|
+
}
|
619
|
+
|
188
620
|
private:
|
189
621
|
async_result(const async_result&) BOOST_ASIO_DELETED;
|
190
622
|
async_result& operator=(const async_result&) BOOST_ASIO_DELETED;
|
191
623
|
};
|
192
624
|
|
193
|
-
#
|
625
|
+
#endif // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
194
626
|
|
195
|
-
template <
|
196
|
-
class async_result<void,
|
627
|
+
template <BOOST_ASIO_COMPLETION_SIGNATURES_TSPECPARAMS>
|
628
|
+
class async_result<void, BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>
|
197
629
|
{
|
198
630
|
// Empty.
|
199
631
|
};
|
200
632
|
|
201
|
-
#endif //
|
633
|
+
#endif // defined(GENERATING_DOCUMENTATION)
|
202
634
|
|
203
635
|
/// Helper template to deduce the handler type from a CompletionToken, capture
|
204
636
|
/// a local copy of the handler, and then create an async_result for the
|
205
637
|
/// handler.
|
206
|
-
template <typename CompletionToken,
|
638
|
+
template <typename CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS>
|
207
639
|
struct async_completion
|
208
640
|
{
|
209
641
|
/// The real handler type to be used for the asynchronous operation.
|
210
642
|
typedef typename boost::asio::async_result<
|
211
643
|
typename decay<CompletionToken>::type,
|
212
|
-
|
644
|
+
BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>::completion_handler_type
|
645
|
+
completion_handler_type;
|
213
646
|
|
214
647
|
#if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
|
215
648
|
/// Constructor.
|
@@ -248,14 +681,16 @@ struct async_completion
|
|
248
681
|
#endif // defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
|
249
682
|
|
250
683
|
/// The result of the asynchronous operation's initiating function.
|
251
|
-
async_result<typename decay<CompletionToken>::type,
|
684
|
+
async_result<typename decay<CompletionToken>::type,
|
685
|
+
BOOST_ASIO_COMPLETION_SIGNATURES_TARGS> result;
|
252
686
|
};
|
253
687
|
|
254
688
|
namespace detail {
|
255
689
|
|
256
|
-
template <typename CompletionToken,
|
690
|
+
template <typename CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS>
|
257
691
|
struct async_result_helper
|
258
|
-
: async_result<typename decay<CompletionToken>::type,
|
692
|
+
: async_result<typename decay<CompletionToken>::type,
|
693
|
+
BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>
|
259
694
|
{
|
260
695
|
};
|
261
696
|
|
@@ -284,10 +719,11 @@ char async_result_initiate_memfn_helper(
|
|
284
719
|
void (async_result_memfns_base::*)(),
|
285
720
|
&async_result_memfns_derived<T>::initiate>*);
|
286
721
|
|
287
|
-
template <typename CompletionToken,
|
722
|
+
template <typename CompletionToken, BOOST_ASIO_COMPLETION_SIGNATURES_TPARAMS>
|
288
723
|
struct async_result_has_initiate_memfn
|
289
724
|
: integral_constant<bool, sizeof(async_result_initiate_memfn_helper<
|
290
|
-
async_result<typename decay<CompletionToken>::type,
|
725
|
+
async_result<typename decay<CompletionToken>::type,
|
726
|
+
BOOST_ASIO_COMPLETION_SIGNATURES_TARGS>
|
291
727
|
>(0)) != 1>
|
292
728
|
{
|
293
729
|
};
|
@@ -297,48 +733,102 @@ struct async_result_has_initiate_memfn
|
|
297
733
|
#if defined(GENERATING_DOCUMENTATION)
|
298
734
|
# define BOOST_ASIO_INITFN_RESULT_TYPE(ct, sig) \
|
299
735
|
void_or_deduced
|
736
|
+
# define BOOST_ASIO_INITFN_RESULT_TYPE2(ct, sig0, sig1) \
|
737
|
+
void_or_deduced
|
738
|
+
# define BOOST_ASIO_INITFN_RESULT_TYPE3(ct, sig0, sig1, sig2) \
|
739
|
+
void_or_deduced
|
300
740
|
#elif defined(_MSC_VER) && (_MSC_VER < 1500)
|
301
741
|
# define BOOST_ASIO_INITFN_RESULT_TYPE(ct, sig) \
|
302
742
|
typename ::boost::asio::detail::async_result_helper< \
|
303
743
|
ct, sig>::return_type
|
744
|
+
# define BOOST_ASIO_INITFN_RESULT_TYPE2(ct, sig0, sig1) \
|
745
|
+
typename ::boost::asio::detail::async_result_helper< \
|
746
|
+
ct, sig0, sig1>::return_type
|
747
|
+
# define BOOST_ASIO_INITFN_RESULT_TYPE3(ct, sig0, sig1, sig2) \
|
748
|
+
typename ::boost::asio::detail::async_result_helper< \
|
749
|
+
ct, sig0, sig1, sig2>::return_type
|
304
750
|
#define BOOST_ASIO_HANDLER_TYPE(ct, sig) \
|
305
751
|
typename ::boost::asio::detail::async_result_helper< \
|
306
752
|
ct, sig>::completion_handler_type
|
753
|
+
#define BOOST_ASIO_HANDLER_TYPE2(ct, sig0, sig1) \
|
754
|
+
typename ::boost::asio::detail::async_result_helper< \
|
755
|
+
ct, sig0, sig1>::completion_handler_type
|
756
|
+
#define BOOST_ASIO_HANDLER_TYPE3(ct, sig0, sig1, sig2) \
|
757
|
+
typename ::boost::asio::detail::async_result_helper< \
|
758
|
+
ct, sig0, sig1, sig2>::completion_handler_type
|
307
759
|
#else
|
308
760
|
# define BOOST_ASIO_INITFN_RESULT_TYPE(ct, sig) \
|
309
761
|
typename ::boost::asio::async_result< \
|
310
762
|
typename ::boost::asio::decay<ct>::type, sig>::return_type
|
763
|
+
# define BOOST_ASIO_INITFN_RESULT_TYPE2(ct, sig0, sig1) \
|
764
|
+
typename ::boost::asio::async_result< \
|
765
|
+
typename ::boost::asio::decay<ct>::type, sig0, sig1>::return_type
|
766
|
+
# define BOOST_ASIO_INITFN_RESULT_TYPE3(ct, sig0, sig1, sig2) \
|
767
|
+
typename ::boost::asio::async_result< \
|
768
|
+
typename ::boost::asio::decay<ct>::type, sig0, sig1, sig2>::return_type
|
311
769
|
#define BOOST_ASIO_HANDLER_TYPE(ct, sig) \
|
312
770
|
typename ::boost::asio::async_result< \
|
313
771
|
typename ::boost::asio::decay<ct>::type, sig>::completion_handler_type
|
772
|
+
#define BOOST_ASIO_HANDLER_TYPE2(ct, sig0, sig1) \
|
773
|
+
typename ::boost::asio::async_result< \
|
774
|
+
typename ::boost::asio::decay<ct>::type, \
|
775
|
+
sig0, sig1>::completion_handler_type
|
776
|
+
#define BOOST_ASIO_HANDLER_TYPE3(ct, sig0, sig1, sig2) \
|
777
|
+
typename ::boost::asio::async_result< \
|
778
|
+
typename ::boost::asio::decay<ct>::type, \
|
779
|
+
sig0, sig1, sig2>::completion_handler_type
|
314
780
|
#endif
|
315
781
|
|
316
782
|
#if defined(GENERATING_DOCUMENTATION)
|
317
783
|
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(ct, sig) \
|
318
784
|
auto
|
785
|
+
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE2(ct, sig0, sig1) \
|
786
|
+
auto
|
787
|
+
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE3(ct, sig0, sig1, sig2) \
|
788
|
+
auto
|
319
789
|
#elif defined(BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION)
|
320
790
|
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(ct, sig) \
|
321
791
|
auto
|
792
|
+
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE2(ct, sig0, sig1) \
|
793
|
+
auto
|
794
|
+
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE3(ct, sig0, sig1, sig2) \
|
795
|
+
auto
|
322
796
|
#else
|
323
797
|
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(ct, sig) \
|
324
798
|
BOOST_ASIO_INITFN_RESULT_TYPE(ct, sig)
|
799
|
+
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE2(ct, sig0, sig1) \
|
800
|
+
BOOST_ASIO_INITFN_RESULT_TYPE2(ct, sig0, sig1)
|
801
|
+
# define BOOST_ASIO_INITFN_AUTO_RESULT_TYPE3(ct, sig0, sig1, sig2) \
|
802
|
+
BOOST_ASIO_INITFN_RESULT_TYPE3(ct, sig0, sig1, sig2)
|
325
803
|
#endif
|
326
804
|
|
327
805
|
#if defined(GENERATING_DOCUMENTATION)
|
328
806
|
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(ct, sig, expr) \
|
329
807
|
void_or_deduced
|
808
|
+
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE2(ct, sig0, sig1, expr) \
|
809
|
+
void_or_deduced
|
810
|
+
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE3(ct, sig0, sig1, sig2, expr) \
|
811
|
+
void_or_deduced
|
330
812
|
#elif defined(BOOST_ASIO_HAS_DECLTYPE)
|
331
813
|
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(ct, sig, expr) \
|
332
814
|
decltype expr
|
815
|
+
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE2(ct, sig0, sig1, expr) \
|
816
|
+
decltype expr
|
817
|
+
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE3(ct, sig0, sig1, sig2, expr) \
|
818
|
+
decltype expr
|
333
819
|
#else
|
334
820
|
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(ct, sig, expr) \
|
335
821
|
BOOST_ASIO_INITFN_RESULT_TYPE(ct, sig)
|
822
|
+
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE2(ct, sig0, sig1, expr) \
|
823
|
+
BOOST_ASIO_INITFN_RESULT_TYPE2(ct, sig0, sig1)
|
824
|
+
# define BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE3(ct, sig0, sig1, sig2, expr) \
|
825
|
+
BOOST_ASIO_INITFN_RESULT_TYPE3(ct, sig0, sig1, sig2)
|
336
826
|
#endif
|
337
827
|
|
338
828
|
#if defined(GENERATING_DOCUMENTATION)
|
339
829
|
|
340
830
|
template <typename CompletionToken,
|
341
|
-
completion_signature
|
831
|
+
completion_signature... Signatures,
|
342
832
|
typename Initiation, typename... Args>
|
343
833
|
void_or_deduced async_initiate(
|
344
834
|
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
@@ -348,13 +838,14 @@ void_or_deduced async_initiate(
|
|
348
838
|
#elif defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
349
839
|
|
350
840
|
template <typename CompletionToken,
|
351
|
-
BOOST_ASIO_COMPLETION_SIGNATURE
|
841
|
+
BOOST_ASIO_COMPLETION_SIGNATURE... Signatures,
|
352
842
|
typename Initiation, typename... Args>
|
353
843
|
inline typename constraint<
|
354
|
-
detail::async_result_has_initiate_memfn<
|
355
|
-
|
844
|
+
detail::async_result_has_initiate_memfn<
|
845
|
+
CompletionToken, Signatures...>::value,
|
846
|
+
BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(CompletionToken, Signatures...,
|
356
847
|
(async_result<typename decay<CompletionToken>::type,
|
357
|
-
|
848
|
+
Signatures...>::initiate(declval<BOOST_ASIO_MOVE_ARG(Initiation)>(),
|
358
849
|
declval<BOOST_ASIO_MOVE_ARG(CompletionToken)>(),
|
359
850
|
declval<BOOST_ASIO_MOVE_ARG(Args)>()...)))>::type
|
360
851
|
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
@@ -362,26 +853,27 @@ async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
|
362
853
|
BOOST_ASIO_MOVE_ARG(Args)... args)
|
363
854
|
{
|
364
855
|
return async_result<typename decay<CompletionToken>::type,
|
365
|
-
|
856
|
+
Signatures...>::initiate(BOOST_ASIO_MOVE_CAST(Initiation)(initiation),
|
366
857
|
BOOST_ASIO_MOVE_CAST(CompletionToken)(token),
|
367
858
|
BOOST_ASIO_MOVE_CAST(Args)(args)...);
|
368
859
|
}
|
369
860
|
|
370
861
|
template <typename CompletionToken,
|
371
|
-
BOOST_ASIO_COMPLETION_SIGNATURE
|
862
|
+
BOOST_ASIO_COMPLETION_SIGNATURE... Signatures,
|
372
863
|
typename Initiation, typename... Args>
|
373
864
|
inline typename constraint<
|
374
|
-
!detail::async_result_has_initiate_memfn<
|
375
|
-
|
865
|
+
!detail::async_result_has_initiate_memfn<
|
866
|
+
CompletionToken, Signatures...>::value,
|
867
|
+
BOOST_ASIO_INITFN_RESULT_TYPE(CompletionToken, Signatures...)>::type
|
376
868
|
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
377
869
|
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token,
|
378
870
|
BOOST_ASIO_MOVE_ARG(Args)... args)
|
379
871
|
{
|
380
|
-
async_completion<CompletionToken,
|
872
|
+
async_completion<CompletionToken, Signatures...> completion(token);
|
381
873
|
|
382
874
|
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)(
|
383
875
|
BOOST_ASIO_MOVE_CAST(BOOST_ASIO_HANDLER_TYPE(CompletionToken,
|
384
|
-
|
876
|
+
Signatures...))(completion.completion_handler),
|
385
877
|
BOOST_ASIO_MOVE_CAST(Args)(args)...);
|
386
878
|
|
387
879
|
return completion.result.get();
|
@@ -390,50 +882,134 @@ async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
|
390
882
|
#else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
391
883
|
|
392
884
|
template <typename CompletionToken,
|
393
|
-
BOOST_ASIO_COMPLETION_SIGNATURE
|
885
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0,
|
886
|
+
typename Initiation>
|
887
|
+
inline typename constraint<
|
888
|
+
detail::async_result_has_initiate_memfn<
|
889
|
+
CompletionToken, Sig0>::value,
|
890
|
+
BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(CompletionToken, Sig0,
|
891
|
+
(async_result<typename decay<CompletionToken>::type,
|
892
|
+
Sig0>::initiate(declval<BOOST_ASIO_MOVE_ARG(Initiation)>(),
|
893
|
+
declval<BOOST_ASIO_MOVE_ARG(CompletionToken)>())))>::type
|
894
|
+
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
895
|
+
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token)
|
896
|
+
{
|
897
|
+
return async_result<typename decay<CompletionToken>::type,
|
898
|
+
Sig0>::initiate(BOOST_ASIO_MOVE_CAST(Initiation)(initiation),
|
899
|
+
BOOST_ASIO_MOVE_CAST(CompletionToken)(token));
|
900
|
+
}
|
901
|
+
|
902
|
+
template <typename CompletionToken,
|
903
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0,
|
904
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig1,
|
394
905
|
typename Initiation>
|
395
906
|
inline typename constraint<
|
396
|
-
detail::async_result_has_initiate_memfn<
|
397
|
-
|
907
|
+
detail::async_result_has_initiate_memfn<
|
908
|
+
CompletionToken, Sig0, Sig1>::value,
|
909
|
+
BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE2(CompletionToken, Sig0, Sig1,
|
398
910
|
(async_result<typename decay<CompletionToken>::type,
|
399
|
-
|
911
|
+
Sig0, Sig1>::initiate(declval<BOOST_ASIO_MOVE_ARG(Initiation)>(),
|
400
912
|
declval<BOOST_ASIO_MOVE_ARG(CompletionToken)>())))>::type
|
401
913
|
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
402
914
|
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token)
|
403
915
|
{
|
404
916
|
return async_result<typename decay<CompletionToken>::type,
|
405
|
-
|
917
|
+
Sig0, Sig1>::initiate(BOOST_ASIO_MOVE_CAST(Initiation)(initiation),
|
406
918
|
BOOST_ASIO_MOVE_CAST(CompletionToken)(token));
|
407
919
|
}
|
408
920
|
|
409
921
|
template <typename CompletionToken,
|
410
|
-
BOOST_ASIO_COMPLETION_SIGNATURE
|
922
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0,
|
923
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig1,
|
924
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig2,
|
411
925
|
typename Initiation>
|
412
926
|
inline typename constraint<
|
413
|
-
|
414
|
-
|
927
|
+
detail::async_result_has_initiate_memfn<
|
928
|
+
CompletionToken, Sig0, Sig1, Sig2>::value,
|
929
|
+
BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE3(CompletionToken, Sig0, Sig1, Sig2,
|
930
|
+
(async_result<typename decay<CompletionToken>::type,
|
931
|
+
Sig0, Sig1, Sig2>::initiate(declval<BOOST_ASIO_MOVE_ARG(Initiation)>(),
|
932
|
+
declval<BOOST_ASIO_MOVE_ARG(CompletionToken)>())))>::type
|
415
933
|
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
416
934
|
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token)
|
417
935
|
{
|
418
|
-
|
936
|
+
return async_result<typename decay<CompletionToken>::type,
|
937
|
+
Sig0, Sig1, Sig2>::initiate(BOOST_ASIO_MOVE_CAST(Initiation)(initiation),
|
938
|
+
BOOST_ASIO_MOVE_CAST(CompletionToken)(token));
|
939
|
+
}
|
940
|
+
|
941
|
+
template <typename CompletionToken,
|
942
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0,
|
943
|
+
typename Initiation>
|
944
|
+
inline typename constraint<
|
945
|
+
!detail::async_result_has_initiate_memfn<
|
946
|
+
CompletionToken, Sig0>::value,
|
947
|
+
BOOST_ASIO_INITFN_RESULT_TYPE(CompletionToken, Sig0)>::type
|
948
|
+
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
949
|
+
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token)
|
950
|
+
{
|
951
|
+
async_completion<CompletionToken, Sig0> completion(token);
|
419
952
|
|
420
953
|
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)(
|
421
954
|
BOOST_ASIO_MOVE_CAST(BOOST_ASIO_HANDLER_TYPE(CompletionToken,
|
422
|
-
|
955
|
+
Sig0))(completion.completion_handler));
|
956
|
+
|
957
|
+
return completion.result.get();
|
958
|
+
}
|
959
|
+
|
960
|
+
template <typename CompletionToken,
|
961
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0,
|
962
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig1,
|
963
|
+
typename Initiation>
|
964
|
+
inline typename constraint<
|
965
|
+
!detail::async_result_has_initiate_memfn<
|
966
|
+
CompletionToken, Sig0, Sig1>::value,
|
967
|
+
BOOST_ASIO_INITFN_RESULT_TYPE2(CompletionToken, Sig0, Sig1)>::type
|
968
|
+
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
969
|
+
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token)
|
970
|
+
{
|
971
|
+
async_completion<CompletionToken, Sig0, Sig1> completion(token);
|
972
|
+
|
973
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)(
|
974
|
+
BOOST_ASIO_MOVE_CAST(BOOST_ASIO_HANDLER_TYPE2(CompletionToken,
|
975
|
+
Sig0, Sig1))(completion.completion_handler));
|
976
|
+
|
977
|
+
return completion.result.get();
|
978
|
+
}
|
979
|
+
|
980
|
+
template <typename CompletionToken,
|
981
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0,
|
982
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig1,
|
983
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig2,
|
984
|
+
typename Initiation>
|
985
|
+
inline typename constraint<
|
986
|
+
!detail::async_result_has_initiate_memfn<
|
987
|
+
CompletionToken, Sig0, Sig1, Sig2>::value,
|
988
|
+
BOOST_ASIO_INITFN_RESULT_TYPE3(CompletionToken, Sig0, Sig1, Sig2)>::type
|
989
|
+
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
990
|
+
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token)
|
991
|
+
{
|
992
|
+
async_completion<CompletionToken, Sig0, Sig1, Sig2> completion(token);
|
993
|
+
|
994
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)(
|
995
|
+
BOOST_ASIO_MOVE_CAST(BOOST_ASIO_HANDLER_TYPE3(CompletionToken,
|
996
|
+
Sig0, Sig1, Sig2))(completion.completion_handler));
|
423
997
|
|
424
998
|
return completion.result.get();
|
425
999
|
}
|
426
1000
|
|
427
1001
|
#define BOOST_ASIO_PRIVATE_INITIATE_DEF(n) \
|
428
1002
|
template <typename CompletionToken, \
|
429
|
-
BOOST_ASIO_COMPLETION_SIGNATURE
|
1003
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0, \
|
430
1004
|
typename Initiation, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
431
1005
|
inline typename constraint< \
|
432
1006
|
detail::async_result_has_initiate_memfn< \
|
433
|
-
CompletionToken,
|
434
|
-
BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(
|
1007
|
+
CompletionToken, Sig0>::value, \
|
1008
|
+
BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE( \
|
1009
|
+
CompletionToken, Sig0, \
|
435
1010
|
(async_result<typename decay<CompletionToken>::type, \
|
436
|
-
|
1011
|
+
Sig0>::initiate( \
|
1012
|
+
declval<BOOST_ASIO_MOVE_ARG(Initiation)>(), \
|
437
1013
|
declval<BOOST_ASIO_MOVE_ARG(CompletionToken)>(), \
|
438
1014
|
BOOST_ASIO_VARIADIC_MOVE_DECLVAL(n))))>::type \
|
439
1015
|
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
|
@@ -441,27 +1017,127 @@ async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
|
441
1017
|
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
442
1018
|
{ \
|
443
1019
|
return async_result<typename decay<CompletionToken>::type, \
|
444
|
-
|
1020
|
+
Sig0>::initiate( \
|
1021
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation), \
|
445
1022
|
BOOST_ASIO_MOVE_CAST(CompletionToken)(token), \
|
446
1023
|
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
447
1024
|
} \
|
448
1025
|
\
|
449
1026
|
template <typename CompletionToken, \
|
450
|
-
BOOST_ASIO_COMPLETION_SIGNATURE
|
1027
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0, \
|
1028
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig1, \
|
1029
|
+
typename Initiation, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
1030
|
+
inline typename constraint< \
|
1031
|
+
detail::async_result_has_initiate_memfn< \
|
1032
|
+
CompletionToken, Sig0, Sig1>::value, \
|
1033
|
+
BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE2( \
|
1034
|
+
CompletionToken, Sig0, Sig1, \
|
1035
|
+
(async_result<typename decay<CompletionToken>::type, \
|
1036
|
+
Sig0, Sig1>::initiate( \
|
1037
|
+
declval<BOOST_ASIO_MOVE_ARG(Initiation)>(), \
|
1038
|
+
declval<BOOST_ASIO_MOVE_ARG(CompletionToken)>(), \
|
1039
|
+
BOOST_ASIO_VARIADIC_MOVE_DECLVAL(n))))>::type \
|
1040
|
+
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
|
1041
|
+
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token, \
|
1042
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
1043
|
+
{ \
|
1044
|
+
return async_result<typename decay<CompletionToken>::type, \
|
1045
|
+
Sig0, Sig1>::initiate( \
|
1046
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation), \
|
1047
|
+
BOOST_ASIO_MOVE_CAST(CompletionToken)(token), \
|
1048
|
+
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
1049
|
+
} \
|
1050
|
+
\
|
1051
|
+
template <typename CompletionToken, \
|
1052
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0, \
|
1053
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig1, \
|
1054
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig2, \
|
1055
|
+
typename Initiation, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
1056
|
+
inline typename constraint< \
|
1057
|
+
detail::async_result_has_initiate_memfn< \
|
1058
|
+
CompletionToken, Sig0, Sig1, Sig2>::value, \
|
1059
|
+
BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE3( \
|
1060
|
+
CompletionToken, Sig0, Sig1, Sig2, \
|
1061
|
+
(async_result<typename decay<CompletionToken>::type, \
|
1062
|
+
Sig0, Sig1, Sig2>::initiate( \
|
1063
|
+
declval<BOOST_ASIO_MOVE_ARG(Initiation)>(), \
|
1064
|
+
declval<BOOST_ASIO_MOVE_ARG(CompletionToken)>(), \
|
1065
|
+
BOOST_ASIO_VARIADIC_MOVE_DECLVAL(n))))>::type \
|
1066
|
+
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
|
1067
|
+
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token, \
|
1068
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
1069
|
+
{ \
|
1070
|
+
return async_result<typename decay<CompletionToken>::type, \
|
1071
|
+
Sig0, Sig1, Sig2>::initiate( \
|
1072
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation), \
|
1073
|
+
BOOST_ASIO_MOVE_CAST(CompletionToken)(token), \
|
1074
|
+
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
1075
|
+
} \
|
1076
|
+
\
|
1077
|
+
template <typename CompletionToken, \
|
1078
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0, \
|
451
1079
|
typename Initiation, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
452
1080
|
inline typename constraint< \
|
453
1081
|
!detail::async_result_has_initiate_memfn< \
|
454
|
-
CompletionToken,
|
455
|
-
BOOST_ASIO_INITFN_RESULT_TYPE(CompletionToken,
|
1082
|
+
CompletionToken, Sig0>::value, \
|
1083
|
+
BOOST_ASIO_INITFN_RESULT_TYPE(CompletionToken, Sig0)>::type \
|
456
1084
|
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
|
457
1085
|
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token, \
|
458
1086
|
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
459
1087
|
{ \
|
460
|
-
async_completion<CompletionToken,
|
1088
|
+
async_completion<CompletionToken, \
|
1089
|
+
Sig0> completion(token); \
|
461
1090
|
\
|
462
1091
|
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)( \
|
463
1092
|
BOOST_ASIO_MOVE_CAST(BOOST_ASIO_HANDLER_TYPE(CompletionToken, \
|
464
|
-
|
1093
|
+
Sig0))(completion.completion_handler), \
|
1094
|
+
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
1095
|
+
\
|
1096
|
+
return completion.result.get(); \
|
1097
|
+
} \
|
1098
|
+
\
|
1099
|
+
template <typename CompletionToken, \
|
1100
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0, \
|
1101
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig1, \
|
1102
|
+
typename Initiation, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
1103
|
+
inline typename constraint< \
|
1104
|
+
!detail::async_result_has_initiate_memfn< \
|
1105
|
+
CompletionToken, Sig0, Sig1>::value, \
|
1106
|
+
BOOST_ASIO_INITFN_RESULT_TYPE2(CompletionToken, Sig0, Sig1)>::type \
|
1107
|
+
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
|
1108
|
+
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token, \
|
1109
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
1110
|
+
{ \
|
1111
|
+
async_completion<CompletionToken, \
|
1112
|
+
Sig0, Sig1> completion(token); \
|
1113
|
+
\
|
1114
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)( \
|
1115
|
+
BOOST_ASIO_MOVE_CAST(BOOST_ASIO_HANDLER_TYPE2(CompletionToken, \
|
1116
|
+
Sig0, Sig1))(completion.completion_handler), \
|
1117
|
+
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
1118
|
+
\
|
1119
|
+
return completion.result.get(); \
|
1120
|
+
} \
|
1121
|
+
\
|
1122
|
+
template <typename CompletionToken, \
|
1123
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig0, \
|
1124
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig1, \
|
1125
|
+
BOOST_ASIO_COMPLETION_SIGNATURE Sig2, \
|
1126
|
+
typename Initiation, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
1127
|
+
inline typename constraint< \
|
1128
|
+
!detail::async_result_has_initiate_memfn< \
|
1129
|
+
CompletionToken, Sig0, Sig1, Sig2>::value, \
|
1130
|
+
BOOST_ASIO_INITFN_RESULT_TYPE3(CompletionToken, Sig0, Sig1, Sig2)>::type \
|
1131
|
+
async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
|
1132
|
+
BOOST_ASIO_NONDEDUCED_MOVE_ARG(CompletionToken) token, \
|
1133
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
1134
|
+
{ \
|
1135
|
+
async_completion<CompletionToken, \
|
1136
|
+
Sig0, Sig1, Sig2> completion(token); \
|
1137
|
+
\
|
1138
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)( \
|
1139
|
+
BOOST_ASIO_MOVE_CAST(BOOST_ASIO_HANDLER_TYPE3(CompletionToken, \
|
1140
|
+
Sig0, Sig1, Sig2))(completion.completion_handler), \
|
465
1141
|
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
466
1142
|
\
|
467
1143
|
return completion.result.get(); \
|
@@ -478,10 +1154,10 @@ async_initiate(BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
|
478
1154
|
|
479
1155
|
namespace detail {
|
480
1156
|
|
481
|
-
template <typename
|
1157
|
+
template <typename... Signatures>
|
482
1158
|
struct initiation_archetype
|
483
1159
|
{
|
484
|
-
template <completion_handler_for<
|
1160
|
+
template <completion_handler_for<Signatures...> CompletionHandler>
|
485
1161
|
void operator()(CompletionHandler&&) const
|
486
1162
|
{
|
487
1163
|
}
|
@@ -489,23 +1165,30 @@ struct initiation_archetype
|
|
489
1165
|
|
490
1166
|
} // namespace detail
|
491
1167
|
|
492
|
-
template <typename T, typename
|
1168
|
+
template <typename T, typename... Signatures>
|
493
1169
|
BOOST_ASIO_CONCEPT completion_token_for =
|
494
|
-
detail::
|
1170
|
+
detail::are_completion_signatures<Signatures...>::value
|
495
1171
|
&&
|
496
1172
|
requires(T&& t)
|
497
1173
|
{
|
498
|
-
async_initiate<T,
|
1174
|
+
async_initiate<T, Signatures...>(
|
1175
|
+
detail::initiation_archetype<Signatures...>{}, t);
|
499
1176
|
};
|
500
1177
|
|
501
|
-
#define BOOST_ASIO_COMPLETION_TOKEN_FOR(
|
502
|
-
::boost::asio::completion_token_for<
|
1178
|
+
#define BOOST_ASIO_COMPLETION_TOKEN_FOR(sig) \
|
1179
|
+
::boost::asio::completion_token_for<sig>
|
1180
|
+
#define BOOST_ASIO_COMPLETION_TOKEN_FOR2(sig0, sig1) \
|
1181
|
+
::boost::asio::completion_token_for<sig0, sig1>
|
1182
|
+
#define BOOST_ASIO_COMPLETION_TOKEN_FOR3(sig0, sig1, sig2) \
|
1183
|
+
::boost::asio::completion_token_for<sig0, sig1, sig2>
|
503
1184
|
|
504
1185
|
#else // defined(BOOST_ASIO_HAS_CONCEPTS)
|
505
1186
|
// && defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
506
1187
|
// && defined(BOOST_ASIO_HAS_DECLTYPE)
|
507
1188
|
|
508
|
-
#define BOOST_ASIO_COMPLETION_TOKEN_FOR(
|
1189
|
+
#define BOOST_ASIO_COMPLETION_TOKEN_FOR(sig) typename
|
1190
|
+
#define BOOST_ASIO_COMPLETION_TOKEN_FOR2(sig0, sig1) typename
|
1191
|
+
#define BOOST_ASIO_COMPLETION_TOKEN_FOR3(sig0, sig1, sig2) typename
|
509
1192
|
|
510
1193
|
#endif // defined(BOOST_ASIO_HAS_CONCEPTS)
|
511
1194
|
// && defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|