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
@@ -118,7 +118,7 @@ struct prefer_result
|
|
118
118
|
|
119
119
|
#else // defined(GENERATING_DOCUMENTATION)
|
120
120
|
|
121
|
-
namespace
|
121
|
+
namespace boost_asio_prefer_fn {
|
122
122
|
|
123
123
|
using boost::asio::conditional;
|
124
124
|
using boost::asio::decay;
|
@@ -566,26 +566,26 @@ struct static_instance
|
|
566
566
|
template <typename T>
|
567
567
|
const T static_instance<T>::instance = {};
|
568
568
|
|
569
|
-
} // namespace
|
569
|
+
} // namespace boost_asio_prefer_fn
|
570
570
|
namespace boost {
|
571
571
|
namespace asio {
|
572
572
|
namespace {
|
573
573
|
|
574
|
-
static BOOST_ASIO_CONSTEXPR const
|
575
|
-
prefer =
|
574
|
+
static BOOST_ASIO_CONSTEXPR const boost_asio_prefer_fn::impl&
|
575
|
+
prefer = boost_asio_prefer_fn::static_instance<>::instance;
|
576
576
|
|
577
577
|
} // namespace
|
578
578
|
|
579
|
-
typedef
|
579
|
+
typedef boost_asio_prefer_fn::impl prefer_t;
|
580
580
|
|
581
581
|
#if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
582
582
|
|
583
583
|
template <typename T, typename... Properties>
|
584
584
|
struct can_prefer :
|
585
585
|
integral_constant<bool,
|
586
|
-
|
586
|
+
boost_asio_prefer_fn::call_traits<
|
587
587
|
prefer_t, T, void(Properties...)>::overload
|
588
|
-
!=
|
588
|
+
!= boost_asio_prefer_fn::ill_formed>
|
589
589
|
{
|
590
590
|
};
|
591
591
|
|
@@ -595,27 +595,27 @@ template <typename T, typename P0 = void,
|
|
595
595
|
typename P1 = void, typename P2 = void>
|
596
596
|
struct can_prefer :
|
597
597
|
integral_constant<bool,
|
598
|
-
|
598
|
+
boost_asio_prefer_fn::call_traits<
|
599
599
|
prefer_t, T, void(P0, P1, P2)>::overload
|
600
|
-
!=
|
600
|
+
!= boost_asio_prefer_fn::ill_formed>
|
601
601
|
{
|
602
602
|
};
|
603
603
|
|
604
604
|
template <typename T, typename P0, typename P1>
|
605
605
|
struct can_prefer<T, P0, P1> :
|
606
606
|
integral_constant<bool,
|
607
|
-
|
607
|
+
boost_asio_prefer_fn::call_traits<
|
608
608
|
prefer_t, T, void(P0, P1)>::overload
|
609
|
-
!=
|
609
|
+
!= boost_asio_prefer_fn::ill_formed>
|
610
610
|
{
|
611
611
|
};
|
612
612
|
|
613
613
|
template <typename T, typename P0>
|
614
614
|
struct can_prefer<T, P0> :
|
615
615
|
integral_constant<bool,
|
616
|
-
|
616
|
+
boost_asio_prefer_fn::call_traits<
|
617
617
|
prefer_t, T, void(P0)>::overload
|
618
|
-
!=
|
618
|
+
!= boost_asio_prefer_fn::ill_formed>
|
619
619
|
{
|
620
620
|
};
|
621
621
|
|
@@ -640,7 +640,7 @@ constexpr bool can_prefer_v
|
|
640
640
|
template <typename T, typename... Properties>
|
641
641
|
struct is_nothrow_prefer :
|
642
642
|
integral_constant<bool,
|
643
|
-
|
643
|
+
boost_asio_prefer_fn::call_traits<
|
644
644
|
prefer_t, T, void(Properties...)>::is_noexcept>
|
645
645
|
{
|
646
646
|
};
|
@@ -651,7 +651,7 @@ template <typename T, typename P0 = void,
|
|
651
651
|
typename P1 = void, typename P2 = void>
|
652
652
|
struct is_nothrow_prefer :
|
653
653
|
integral_constant<bool,
|
654
|
-
|
654
|
+
boost_asio_prefer_fn::call_traits<
|
655
655
|
prefer_t, T, void(P0, P1, P2)>::is_noexcept>
|
656
656
|
{
|
657
657
|
};
|
@@ -659,7 +659,7 @@ struct is_nothrow_prefer :
|
|
659
659
|
template <typename T, typename P0, typename P1>
|
660
660
|
struct is_nothrow_prefer<T, P0, P1> :
|
661
661
|
integral_constant<bool,
|
662
|
-
|
662
|
+
boost_asio_prefer_fn::call_traits<
|
663
663
|
prefer_t, T, void(P0, P1)>::is_noexcept>
|
664
664
|
{
|
665
665
|
};
|
@@ -667,7 +667,7 @@ struct is_nothrow_prefer<T, P0, P1> :
|
|
667
667
|
template <typename T, typename P0>
|
668
668
|
struct is_nothrow_prefer<T, P0> :
|
669
669
|
integral_constant<bool,
|
670
|
-
|
670
|
+
boost_asio_prefer_fn::call_traits<
|
671
671
|
prefer_t, T, void(P0)>::is_noexcept>
|
672
672
|
{
|
673
673
|
};
|
@@ -693,7 +693,7 @@ constexpr bool is_nothrow_prefer_v
|
|
693
693
|
template <typename T, typename... Properties>
|
694
694
|
struct prefer_result
|
695
695
|
{
|
696
|
-
typedef typename
|
696
|
+
typedef typename boost_asio_prefer_fn::call_traits<
|
697
697
|
prefer_t, T, void(Properties...)>::result_type type;
|
698
698
|
};
|
699
699
|
|
@@ -703,21 +703,21 @@ template <typename T, typename P0 = void,
|
|
703
703
|
typename P1 = void, typename P2 = void>
|
704
704
|
struct prefer_result
|
705
705
|
{
|
706
|
-
typedef typename
|
706
|
+
typedef typename boost_asio_prefer_fn::call_traits<
|
707
707
|
prefer_t, T, void(P0, P1, P2)>::result_type type;
|
708
708
|
};
|
709
709
|
|
710
710
|
template <typename T, typename P0, typename P1>
|
711
711
|
struct prefer_result<T, P0, P1>
|
712
712
|
{
|
713
|
-
typedef typename
|
713
|
+
typedef typename boost_asio_prefer_fn::call_traits<
|
714
714
|
prefer_t, T, void(P0, P1)>::result_type type;
|
715
715
|
};
|
716
716
|
|
717
717
|
template <typename T, typename P0>
|
718
718
|
struct prefer_result<T, P0>
|
719
719
|
{
|
720
|
-
typedef typename
|
720
|
+
typedef typename boost_asio_prefer_fn::call_traits<
|
721
721
|
prefer_t, T, void(P0)>::result_type type;
|
722
722
|
};
|
723
723
|
|
@@ -100,7 +100,7 @@ struct query_result
|
|
100
100
|
|
101
101
|
#else // defined(GENERATING_DOCUMENTATION)
|
102
102
|
|
103
|
-
namespace
|
103
|
+
namespace boost_asio_query_fn {
|
104
104
|
|
105
105
|
using boost::asio::conditional;
|
106
106
|
using boost::asio::decay;
|
@@ -268,23 +268,23 @@ struct static_instance
|
|
268
268
|
template <typename T>
|
269
269
|
const T static_instance<T>::instance = {};
|
270
270
|
|
271
|
-
} // namespace
|
271
|
+
} // namespace boost_asio_query_fn
|
272
272
|
namespace boost {
|
273
273
|
namespace asio {
|
274
274
|
namespace {
|
275
275
|
|
276
|
-
static BOOST_ASIO_CONSTEXPR const
|
277
|
-
query =
|
276
|
+
static BOOST_ASIO_CONSTEXPR const boost_asio_query_fn::impl&
|
277
|
+
query = boost_asio_query_fn::static_instance<>::instance;
|
278
278
|
|
279
279
|
} // namespace
|
280
280
|
|
281
|
-
typedef
|
281
|
+
typedef boost_asio_query_fn::impl query_t;
|
282
282
|
|
283
283
|
template <typename T, typename Property>
|
284
284
|
struct can_query :
|
285
285
|
integral_constant<bool,
|
286
|
-
|
287
|
-
|
286
|
+
boost_asio_query_fn::call_traits<query_t, T, void(Property)>::overload !=
|
287
|
+
boost_asio_query_fn::ill_formed>
|
288
288
|
{
|
289
289
|
};
|
290
290
|
|
@@ -299,7 +299,7 @@ constexpr bool can_query_v
|
|
299
299
|
template <typename T, typename Property>
|
300
300
|
struct is_nothrow_query :
|
301
301
|
integral_constant<bool,
|
302
|
-
|
302
|
+
boost_asio_query_fn::call_traits<query_t, T, void(Property)>::is_noexcept>
|
303
303
|
{
|
304
304
|
};
|
305
305
|
|
@@ -314,7 +314,7 @@ constexpr bool is_nothrow_query_v
|
|
314
314
|
template <typename T, typename Property>
|
315
315
|
struct query_result
|
316
316
|
{
|
317
|
-
typedef typename
|
317
|
+
typedef typename boost_asio_query_fn::call_traits<
|
318
318
|
query_t, T, void(Property)>::result_type type;
|
319
319
|
};
|
320
320
|
|
@@ -767,6 +767,17 @@ std::size_t read(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
767
767
|
* s, buffers,
|
768
768
|
* boost::asio::transfer_all(),
|
769
769
|
* handler); @endcode
|
770
|
+
*
|
771
|
+
* @par Per-Operation Cancellation
|
772
|
+
* This asynchronous operation supports cancellation for the following
|
773
|
+
* boost::asio::cancellation_type values:
|
774
|
+
*
|
775
|
+
* @li @c cancellation_type::terminal
|
776
|
+
*
|
777
|
+
* @li @c cancellation_type::partial
|
778
|
+
*
|
779
|
+
* if they are also supported by the @c AsyncReadStream type's
|
780
|
+
* @c async_read_some operation.
|
770
781
|
*/
|
771
782
|
template <typename AsyncReadStream, typename MutableBufferSequence,
|
772
783
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -845,6 +856,17 @@ async_read(AsyncReadStream& s, const MutableBufferSequence& buffers,
|
|
845
856
|
* See the @ref buffer documentation for information on reading into multiple
|
846
857
|
* buffers in one go, and how to use it with arrays, boost::array or
|
847
858
|
* std::vector.
|
859
|
+
*
|
860
|
+
* @par Per-Operation Cancellation
|
861
|
+
* This asynchronous operation supports cancellation for the following
|
862
|
+
* boost::asio::cancellation_type values:
|
863
|
+
*
|
864
|
+
* @li @c cancellation_type::terminal
|
865
|
+
*
|
866
|
+
* @li @c cancellation_type::partial
|
867
|
+
*
|
868
|
+
* if they are also supported by the @c AsyncReadStream type's
|
869
|
+
* @c async_read_some operation.
|
848
870
|
*/
|
849
871
|
template <typename AsyncReadStream,
|
850
872
|
typename MutableBufferSequence, typename CompletionCondition,
|
@@ -914,6 +936,17 @@ async_read(AsyncReadStream& s, const MutableBufferSequence& buffers,
|
|
914
936
|
* s, buffers,
|
915
937
|
* boost::asio::transfer_all(),
|
916
938
|
* handler); @endcode
|
939
|
+
*
|
940
|
+
* @par Per-Operation Cancellation
|
941
|
+
* This asynchronous operation supports cancellation for the following
|
942
|
+
* boost::asio::cancellation_type values:
|
943
|
+
*
|
944
|
+
* @li @c cancellation_type::terminal
|
945
|
+
*
|
946
|
+
* @li @c cancellation_type::partial
|
947
|
+
*
|
948
|
+
* if they are also supported by the @c AsyncReadStream type's
|
949
|
+
* @c async_read_some operation.
|
917
950
|
*/
|
918
951
|
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
919
952
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -991,6 +1024,17 @@ async_read(AsyncReadStream& s,
|
|
991
1024
|
* not, the handler will not be invoked from within this function. On
|
992
1025
|
* immediate completion, invocation of the handler will be performed in a
|
993
1026
|
* manner equivalent to using boost::asio::post().
|
1027
|
+
*
|
1028
|
+
* @par Per-Operation Cancellation
|
1029
|
+
* This asynchronous operation supports cancellation for the following
|
1030
|
+
* boost::asio::cancellation_type values:
|
1031
|
+
*
|
1032
|
+
* @li @c cancellation_type::terminal
|
1033
|
+
*
|
1034
|
+
* @li @c cancellation_type::partial
|
1035
|
+
*
|
1036
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1037
|
+
* @c async_read_some operation.
|
994
1038
|
*/
|
995
1039
|
template <typename AsyncReadStream,
|
996
1040
|
typename DynamicBuffer_v1, typename CompletionCondition,
|
@@ -1063,6 +1107,17 @@ async_read(AsyncReadStream& s,
|
|
1063
1107
|
* s, b,
|
1064
1108
|
* boost::asio::transfer_all(),
|
1065
1109
|
* handler); @endcode
|
1110
|
+
*
|
1111
|
+
* @par Per-Operation Cancellation
|
1112
|
+
* This asynchronous operation supports cancellation for the following
|
1113
|
+
* boost::asio::cancellation_type values:
|
1114
|
+
*
|
1115
|
+
* @li @c cancellation_type::terminal
|
1116
|
+
*
|
1117
|
+
* @li @c cancellation_type::partial
|
1118
|
+
*
|
1119
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1120
|
+
* @c async_read_some operation.
|
1066
1121
|
*/
|
1067
1122
|
template <typename AsyncReadStream, typename Allocator,
|
1068
1123
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -1131,6 +1186,17 @@ async_read(AsyncReadStream& s, basic_streambuf<Allocator>& b,
|
|
1131
1186
|
* not, the handler will not be invoked from within this function. On
|
1132
1187
|
* immediate completion, invocation of the handler will be performed in a
|
1133
1188
|
* manner equivalent to using boost::asio::post().
|
1189
|
+
*
|
1190
|
+
* @par Per-Operation Cancellation
|
1191
|
+
* This asynchronous operation supports cancellation for the following
|
1192
|
+
* boost::asio::cancellation_type values:
|
1193
|
+
*
|
1194
|
+
* @li @c cancellation_type::terminal
|
1195
|
+
*
|
1196
|
+
* @li @c cancellation_type::partial
|
1197
|
+
*
|
1198
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1199
|
+
* @c async_read_some operation.
|
1134
1200
|
*/
|
1135
1201
|
template <typename AsyncReadStream,
|
1136
1202
|
typename Allocator, typename CompletionCondition,
|
@@ -1199,6 +1265,17 @@ async_read(AsyncReadStream& s, basic_streambuf<Allocator>& b,
|
|
1199
1265
|
* s, buffers,
|
1200
1266
|
* boost::asio::transfer_all(),
|
1201
1267
|
* handler); @endcode
|
1268
|
+
*
|
1269
|
+
* @par Per-Operation Cancellation
|
1270
|
+
* This asynchronous operation supports cancellation for the following
|
1271
|
+
* boost::asio::cancellation_type values:
|
1272
|
+
*
|
1273
|
+
* @li @c cancellation_type::terminal
|
1274
|
+
*
|
1275
|
+
* @li @c cancellation_type::partial
|
1276
|
+
*
|
1277
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1278
|
+
* @c async_read_some operation.
|
1202
1279
|
*/
|
1203
1280
|
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
1204
1281
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -1272,6 +1349,17 @@ async_read(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
1272
1349
|
* not, the handler will not be invoked from within this function. On
|
1273
1350
|
* immediate completion, invocation of the handler will be performed in a
|
1274
1351
|
* manner equivalent to using boost::asio::post().
|
1352
|
+
*
|
1353
|
+
* @par Per-Operation Cancellation
|
1354
|
+
* This asynchronous operation supports cancellation for the following
|
1355
|
+
* boost::asio::cancellation_type values:
|
1356
|
+
*
|
1357
|
+
* @li @c cancellation_type::terminal
|
1358
|
+
*
|
1359
|
+
* @li @c cancellation_type::partial
|
1360
|
+
*
|
1361
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1362
|
+
* @c async_read_some operation.
|
1275
1363
|
*/
|
1276
1364
|
template <typename AsyncReadStream,
|
1277
1365
|
typename DynamicBuffer_v2, typename CompletionCondition,
|
@@ -458,6 +458,17 @@ std::size_t read_at(SyncRandomAccessReadDevice& d,
|
|
458
458
|
* d, 42, buffers,
|
459
459
|
* boost::asio::transfer_all(),
|
460
460
|
* handler); @endcode
|
461
|
+
*
|
462
|
+
* @par Per-Operation Cancellation
|
463
|
+
* This asynchronous operation supports cancellation for the following
|
464
|
+
* boost::asio::cancellation_type values:
|
465
|
+
*
|
466
|
+
* @li @c cancellation_type::terminal
|
467
|
+
*
|
468
|
+
* @li @c cancellation_type::partial
|
469
|
+
*
|
470
|
+
* if they are also supported by the @c AsyncRandomAccessReadDevice type's
|
471
|
+
* async_read_some_at operation.
|
461
472
|
*/
|
462
473
|
template <typename AsyncRandomAccessReadDevice, typename MutableBufferSequence,
|
463
474
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -536,6 +547,17 @@ async_read_at(AsyncRandomAccessReadDevice& d, uint64_t offset,
|
|
536
547
|
* See the @ref buffer documentation for information on reading into multiple
|
537
548
|
* buffers in one go, and how to use it with arrays, boost::array or
|
538
549
|
* std::vector.
|
550
|
+
*
|
551
|
+
* @par Per-Operation Cancellation
|
552
|
+
* This asynchronous operation supports cancellation for the following
|
553
|
+
* boost::asio::cancellation_type values:
|
554
|
+
*
|
555
|
+
* @li @c cancellation_type::terminal
|
556
|
+
*
|
557
|
+
* @li @c cancellation_type::partial
|
558
|
+
*
|
559
|
+
* if they are also supported by the @c AsyncRandomAccessReadDevice type's
|
560
|
+
* async_read_some_at operation.
|
539
561
|
*/
|
540
562
|
template <typename AsyncRandomAccessReadDevice,
|
541
563
|
typename MutableBufferSequence, typename CompletionCondition,
|
@@ -599,6 +621,17 @@ async_read_at(AsyncRandomAccessReadDevice& d,
|
|
599
621
|
* d, 42, b,
|
600
622
|
* boost::asio::transfer_all(),
|
601
623
|
* handler); @endcode
|
624
|
+
*
|
625
|
+
* @par Per-Operation Cancellation
|
626
|
+
* This asynchronous operation supports cancellation for the following
|
627
|
+
* boost::asio::cancellation_type values:
|
628
|
+
*
|
629
|
+
* @li @c cancellation_type::terminal
|
630
|
+
*
|
631
|
+
* @li @c cancellation_type::partial
|
632
|
+
*
|
633
|
+
* if they are also supported by the @c AsyncRandomAccessReadDevice type's
|
634
|
+
* async_read_some_at operation.
|
602
635
|
*/
|
603
636
|
template <typename AsyncRandomAccessReadDevice, typename Allocator,
|
604
637
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -665,6 +698,17 @@ async_read_at(AsyncRandomAccessReadDevice& d,
|
|
665
698
|
* not, the handler will not be invoked from within this function. On
|
666
699
|
* immediate completion, invocation of the handler will be performed in a
|
667
700
|
* manner equivalent to using boost::asio::post().
|
701
|
+
*
|
702
|
+
* @par Per-Operation Cancellation
|
703
|
+
* This asynchronous operation supports cancellation for the following
|
704
|
+
* boost::asio::cancellation_type values:
|
705
|
+
*
|
706
|
+
* @li @c cancellation_type::terminal
|
707
|
+
*
|
708
|
+
* @li @c cancellation_type::partial
|
709
|
+
*
|
710
|
+
* if they are also supported by the @c AsyncRandomAccessReadDevice type's
|
711
|
+
* async_read_some_at operation.
|
668
712
|
*/
|
669
713
|
template <typename AsyncRandomAccessReadDevice,
|
670
714
|
typename Allocator, typename CompletionCondition,
|
@@ -1622,6 +1622,17 @@ std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
1622
1622
|
* @code { 'd', 'e', ... } @endcode
|
1623
1623
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1624
1624
|
* @c async_read_until operation.
|
1625
|
+
*
|
1626
|
+
* @par Per-Operation Cancellation
|
1627
|
+
* This asynchronous operation supports cancellation for the following
|
1628
|
+
* boost::asio::cancellation_type values:
|
1629
|
+
*
|
1630
|
+
* @li @c cancellation_type::terminal
|
1631
|
+
*
|
1632
|
+
* @li @c cancellation_type::partial
|
1633
|
+
*
|
1634
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1635
|
+
* @c async_read_some operation.
|
1625
1636
|
*/
|
1626
1637
|
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
1627
1638
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -1723,6 +1734,17 @@ async_read_until(AsyncReadStream& s,
|
|
1723
1734
|
* @code { 'd', 'e', ... } @endcode
|
1724
1735
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1725
1736
|
* @c async_read_until operation.
|
1737
|
+
*
|
1738
|
+
* @par Per-Operation Cancellation
|
1739
|
+
* This asynchronous operation supports cancellation for the following
|
1740
|
+
* boost::asio::cancellation_type values:
|
1741
|
+
*
|
1742
|
+
* @li @c cancellation_type::terminal
|
1743
|
+
*
|
1744
|
+
* @li @c cancellation_type::partial
|
1745
|
+
*
|
1746
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1747
|
+
* @c async_read_some operation.
|
1726
1748
|
*/
|
1727
1749
|
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
1728
1750
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -1832,6 +1854,17 @@ async_read_until(AsyncReadStream& s,
|
|
1832
1854
|
* @code { 'd', 'e', ... } @endcode
|
1833
1855
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1834
1856
|
* @c async_read_until operation.
|
1857
|
+
*
|
1858
|
+
* @par Per-Operation Cancellation
|
1859
|
+
* This asynchronous operation supports cancellation for the following
|
1860
|
+
* boost::asio::cancellation_type values:
|
1861
|
+
*
|
1862
|
+
* @li @c cancellation_type::terminal
|
1863
|
+
*
|
1864
|
+
* @li @c cancellation_type::partial
|
1865
|
+
*
|
1866
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1867
|
+
* @c async_read_some operation.
|
1835
1868
|
*/
|
1836
1869
|
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
1837
1870
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -1983,6 +2016,17 @@ async_read_until(AsyncReadStream& s,
|
|
1983
2016
|
* std::string data;
|
1984
2017
|
* boost::asio::async_read_until(s, data, match_char('a'), handler);
|
1985
2018
|
* @endcode
|
2019
|
+
*
|
2020
|
+
* @par Per-Operation Cancellation
|
2021
|
+
* This asynchronous operation supports cancellation for the following
|
2022
|
+
* boost::asio::cancellation_type values:
|
2023
|
+
*
|
2024
|
+
* @li @c cancellation_type::terminal
|
2025
|
+
*
|
2026
|
+
* @li @c cancellation_type::partial
|
2027
|
+
*
|
2028
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2029
|
+
* @c async_read_some operation.
|
1986
2030
|
*/
|
1987
2031
|
template <typename AsyncReadStream,
|
1988
2032
|
typename DynamicBuffer_v1, typename MatchCondition,
|
@@ -2087,6 +2131,17 @@ async_read_until(AsyncReadStream& s,
|
|
2087
2131
|
* @code { 'd', 'e', ... } @endcode
|
2088
2132
|
* This data may be the start of a new line, to be extracted by a subsequent
|
2089
2133
|
* @c async_read_until operation.
|
2134
|
+
*
|
2135
|
+
* @par Per-Operation Cancellation
|
2136
|
+
* This asynchronous operation supports cancellation for the following
|
2137
|
+
* boost::asio::cancellation_type values:
|
2138
|
+
*
|
2139
|
+
* @li @c cancellation_type::terminal
|
2140
|
+
*
|
2141
|
+
* @li @c cancellation_type::partial
|
2142
|
+
*
|
2143
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2144
|
+
* @c async_read_some operation.
|
2090
2145
|
*/
|
2091
2146
|
template <typename AsyncReadStream, typename Allocator,
|
2092
2147
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -2178,6 +2233,17 @@ async_read_until(AsyncReadStream& s,
|
|
2178
2233
|
* @code { 'd', 'e', ... } @endcode
|
2179
2234
|
* This data may be the start of a new line, to be extracted by a subsequent
|
2180
2235
|
* @c async_read_until operation.
|
2236
|
+
*
|
2237
|
+
* @par Per-Operation Cancellation
|
2238
|
+
* This asynchronous operation supports cancellation for the following
|
2239
|
+
* boost::asio::cancellation_type values:
|
2240
|
+
*
|
2241
|
+
* @li @c cancellation_type::terminal
|
2242
|
+
*
|
2243
|
+
* @li @c cancellation_type::partial
|
2244
|
+
*
|
2245
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2246
|
+
* @c async_read_some operation.
|
2181
2247
|
*/
|
2182
2248
|
template <typename AsyncReadStream, typename Allocator,
|
2183
2249
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -2277,6 +2343,17 @@ async_read_until(AsyncReadStream& s,
|
|
2277
2343
|
* @code { 'd', 'e', ... } @endcode
|
2278
2344
|
* This data may be the start of a new line, to be extracted by a subsequent
|
2279
2345
|
* @c async_read_until operation.
|
2346
|
+
*
|
2347
|
+
* @par Per-Operation Cancellation
|
2348
|
+
* This asynchronous operation supports cancellation for the following
|
2349
|
+
* boost::asio::cancellation_type values:
|
2350
|
+
*
|
2351
|
+
* @li @c cancellation_type::terminal
|
2352
|
+
*
|
2353
|
+
* @li @c cancellation_type::partial
|
2354
|
+
*
|
2355
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2356
|
+
* @c async_read_some operation.
|
2280
2357
|
*/
|
2281
2358
|
template <typename AsyncReadStream, typename Allocator,
|
2282
2359
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -2416,6 +2493,17 @@ async_read_until(AsyncReadStream& s,
|
|
2416
2493
|
* boost::asio::streambuf b;
|
2417
2494
|
* boost::asio::async_read_until(s, b, match_char('a'), handler);
|
2418
2495
|
* @endcode
|
2496
|
+
*
|
2497
|
+
* @par Per-Operation Cancellation
|
2498
|
+
* This asynchronous operation supports cancellation for the following
|
2499
|
+
* boost::asio::cancellation_type values:
|
2500
|
+
*
|
2501
|
+
* @li @c cancellation_type::terminal
|
2502
|
+
*
|
2503
|
+
* @li @c cancellation_type::partial
|
2504
|
+
*
|
2505
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2506
|
+
* @c async_read_some operation.
|
2419
2507
|
*/
|
2420
2508
|
template <typename AsyncReadStream, typename Allocator, typename MatchCondition,
|
2421
2509
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -2517,6 +2605,17 @@ async_read_until(AsyncReadStream& s,
|
|
2517
2605
|
* @code { 'd', 'e', ... } @endcode
|
2518
2606
|
* This data may be the start of a new line, to be extracted by a subsequent
|
2519
2607
|
* @c async_read_until operation.
|
2608
|
+
*
|
2609
|
+
* @par Per-Operation Cancellation
|
2610
|
+
* This asynchronous operation supports cancellation for the following
|
2611
|
+
* boost::asio::cancellation_type values:
|
2612
|
+
*
|
2613
|
+
* @li @c cancellation_type::terminal
|
2614
|
+
*
|
2615
|
+
* @li @c cancellation_type::partial
|
2616
|
+
*
|
2617
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2618
|
+
* @c async_read_some operation.
|
2520
2619
|
*/
|
2521
2620
|
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
2522
2621
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -2614,6 +2713,17 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers, char delim,
|
|
2614
2713
|
* @code { 'd', 'e', ... } @endcode
|
2615
2714
|
* This data may be the start of a new line, to be extracted by a subsequent
|
2616
2715
|
* @c async_read_until operation.
|
2716
|
+
*
|
2717
|
+
* @par Per-Operation Cancellation
|
2718
|
+
* This asynchronous operation supports cancellation for the following
|
2719
|
+
* boost::asio::cancellation_type values:
|
2720
|
+
*
|
2721
|
+
* @li @c cancellation_type::terminal
|
2722
|
+
*
|
2723
|
+
* @li @c cancellation_type::partial
|
2724
|
+
*
|
2725
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2726
|
+
* @c async_read_some operation.
|
2617
2727
|
*/
|
2618
2728
|
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
2619
2729
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -2719,6 +2829,17 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2719
2829
|
* @code { 'd', 'e', ... } @endcode
|
2720
2830
|
* This data may be the start of a new line, to be extracted by a subsequent
|
2721
2831
|
* @c async_read_until operation.
|
2832
|
+
*
|
2833
|
+
* @par Per-Operation Cancellation
|
2834
|
+
* This asynchronous operation supports cancellation for the following
|
2835
|
+
* boost::asio::cancellation_type values:
|
2836
|
+
*
|
2837
|
+
* @li @c cancellation_type::terminal
|
2838
|
+
*
|
2839
|
+
* @li @c cancellation_type::partial
|
2840
|
+
*
|
2841
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2842
|
+
* @c async_read_some operation.
|
2722
2843
|
*/
|
2723
2844
|
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
2724
2845
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
@@ -2866,6 +2987,17 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2866
2987
|
* std::string data;
|
2867
2988
|
* boost::asio::async_read_until(s, data, match_char('a'), handler);
|
2868
2989
|
* @endcode
|
2990
|
+
*
|
2991
|
+
* @par Per-Operation Cancellation
|
2992
|
+
* This asynchronous operation supports cancellation for the following
|
2993
|
+
* boost::asio::cancellation_type values:
|
2994
|
+
*
|
2995
|
+
* @li @c cancellation_type::terminal
|
2996
|
+
*
|
2997
|
+
* @li @c cancellation_type::partial
|
2998
|
+
*
|
2999
|
+
* if they are also supported by the @c AsyncReadStream type's
|
3000
|
+
* @c async_read_some operation.
|
2869
3001
|
*/
|
2870
3002
|
template <typename AsyncReadStream,
|
2871
3003
|
typename DynamicBuffer_v2, typename MatchCondition,
|