passenger 6.0.25 → 6.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +33 -1
- data/CONTRIBUTING.md +2 -2
- data/build/agent.rb +0 -2
- data/build/basics.rb +2 -0
- data/build/common_library.rb +0 -6
- data/build/misc.rb +0 -2
- data/build/schema_printer.rb +0 -2
- data/build/support/cxx_dependency_map.rb +57 -254
- data/dev/copy_boost_headers +3 -14
- data/dev/index_cxx_dependencies.rb +1 -1
- data/doc/AiInstructions.md +112 -0
- data/doc/CxxMockingStrategy.md +42 -0
- data/doc/CxxTestingGuide.md +110 -0
- data/doc/DesignAspects/LimitedGemDependencies.md +22 -14
- data/doc/TempFileHandling.md +15 -0
- data/passenger.gemspec +1 -1
- data/resources/templates/standalone/server.erb +1 -0
- data/src/agent/Core/ApiServer.h +0 -1
- data/src/agent/Core/ApplicationPool/AbstractSession.h +10 -1
- data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +1 -1
- data/src/agent/Core/ApplicationPool/Group/SessionManagement.cpp +33 -18
- data/src/agent/Core/ApplicationPool/Group.h +0 -1
- data/src/agent/Core/ApplicationPool/Implementation.cpp +0 -3
- data/src/agent/Core/ApplicationPool/Session.h +14 -19
- data/src/agent/Core/ApplicationPool/Socket.h +15 -5
- data/src/agent/Core/ApplicationPool/TestSession.h +74 -15
- data/src/agent/Core/Config.h +2 -34
- data/src/agent/Core/ConfigChange.cpp +1 -41
- data/src/agent/Core/Controller/CheckoutSession.cpp +100 -14
- data/src/agent/Core/Controller/Client.h +0 -1
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/Core/Controller/Hooks.cpp +13 -0
- data/src/agent/Core/Controller/InitRequest.cpp +2 -0
- data/src/agent/Core/Controller/InternalUtils.cpp +12 -0
- data/src/agent/Core/Controller/Request.h +3 -2
- data/src/agent/Core/Controller.h +12 -13
- data/src/agent/Core/CoreMain.cpp +1 -56
- data/src/agent/Core/OptionParser.h +1 -7
- data/src/agent/Core/SecurityUpdateChecker.h +0 -1
- data/src/agent/Watchdog/Config.h +2 -21
- data/src/agent/Watchdog/WatchdogMain.cpp +0 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +0 -20
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +0 -60
- data/src/apache2_module/Hooks.cpp +0 -4
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp +0 -44
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +0 -52
- data/src/cxx_supportlib/Algorithms/Hasher.cpp +1 -1
- data/src/cxx_supportlib/Algorithms/Hasher.h +4 -7
- data/src/cxx_supportlib/Algorithms/MovingAverage.h +1 -160
- data/src/cxx_supportlib/Constants.h +2 -1
- data/src/cxx_supportlib/DataStructures/StringMap.h +2 -3
- data/src/cxx_supportlib/FileTools/FileManip.h +2 -0
- data/src/cxx_supportlib/Hooks.h +0 -1
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +49 -60
- data/src/cxx_supportlib/IOTools/IOUtils.h +65 -73
- data/src/cxx_supportlib/ServerKit/AcceptLoadBalancer.h +2 -0
- data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +24 -24
- data/src/cxx_supportlib/StrIntTools/StrIntUtils.h +2 -2
- data/src/cxx_supportlib/SystemTools/SystemMetricsCollector.h +0 -2
- data/src/cxx_supportlib/Utils/FastStringStream.h +7 -7
- data/src/cxx_supportlib/Utils/IniFile.h +24 -25
- data/src/cxx_supportlib/Utils.h +0 -30
- data/src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp +4 -0
- data/src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp +1 -0
- data/src/cxx_supportlib/oxt/implementation.cpp +41 -2
- data/src/cxx_supportlib/oxt/system_calls.cpp +1 -0
- data/src/cxx_supportlib/oxt/system_calls.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_or_allocator_rebind.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_rebind.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +72 -49
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/function_detector.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_contiguous_container.hpp +15 -11
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +36 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +21 -17
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +21 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +5 -15
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +73 -14
- data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +18 -29
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +6 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/function_detector.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +1 -20
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/placement_new.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_count.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/experimental_traits.hpp +4 -49
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +13 -4
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +47 -46
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +12 -252
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_utility.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +101 -592
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/pointer_cast.hpp +12 -24
- data/src/cxx_supportlib/vendor-modified/boost/random/beta_distribution.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +37 -44
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +1 -23
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/deprecated_macros.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_counted_base.hpp +14 -18
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_sp_deleter.hpp +7 -15
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +39 -90
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_convertible.hpp +0 -16
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_nt.hpp +13 -14
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp +16 -17
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +16 -55
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_noexcept.hpp +5 -14
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_type_traits.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_std_atomic.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +7 -10
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +32 -110
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ref_counter.hpp +17 -18
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +28 -565
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_unique.hpp +11 -17
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +17 -21
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +20 -22
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +34 -68
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +78 -356
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +31 -89
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map.hpp +195 -12
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set.hpp +206 -17
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_node_map.hpp +1202 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_node_map_fwd.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_node_set.hpp +1065 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_node_set_fwd.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/concurrent_static_asserts.hpp +30 -8
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/concurrent_table.hpp +248 -47
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/core.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_map_types.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_set_types.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_handle.hpp +120 -5
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_handle.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_types.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_handle.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_types.hpp +13 -4
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/tuple_rotate_right.hpp +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/types_constructibility.hpp +172 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map.hpp +32 -44
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set.hpp +31 -35
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_printers.hpp +414 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +8 -32
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +6 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +12 -48
- 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/nginx_module/MainConfig/AutoGeneratedCreateFunction.c +0 -24
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c +0 -48
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h +0 -16
- data/src/nginx_module/ngx_http_passenger_module.c +0 -4
- data/src/ruby_native_extension/passenger_native_support.c +19 -3
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +8 -24
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +0 -3
- data/src/ruby_supportlib/phusion_passenger/constants.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +6 -28
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +9 -8
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +2 -27
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +0 -30
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +8 -20
- data/src/ruby_supportlib/phusion_passenger.rb +7 -7
- data/src/schema_printer/SchemaPrinterMain.cpp +0 -4
- metadata +19 -670
- data/dev/websocketpp.patch +0 -39
- data/src/agent/Core/AdminPanelConnector.h +0 -680
- data/src/cxx_supportlib/DataStructures/HashMap.h +0 -60
- data/src/cxx_supportlib/FileTools/LargeFiles.cpp +0 -41
- data/src/cxx_supportlib/FileTools/LargeFiles.h +0 -43
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +0 -975
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +0 -338
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +0 -824
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +0 -353
- data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +0 -223
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +0 -237
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_immediate_executor.hpp +0 -283
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +0 -950
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +0 -1364
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +0 -712
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +0 -826
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +0 -288
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +0 -691
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +0 -1358
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +0 -628
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +0 -825
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +0 -989
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +0 -650
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +0 -1938
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +0 -2710
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +0 -333
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +0 -644
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +0 -746
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +0 -1165
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +0 -452
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +0 -826
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +0 -624
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +0 -598
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +0 -615
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +0 -666
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_immediate_executor.hpp +0 -618
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +0 -2755
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +0 -320
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +0 -275
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +0 -294
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +0 -267
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +0 -523
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancel_after.hpp +0 -303
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancel_at.hpp +0 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +0 -247
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +0 -237
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +0 -159
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_composed.hpp +0 -1323
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +0 -525
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +0 -269
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/composed.hpp +0 -415
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +0 -1348
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +0 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +0 -330
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/default_completion_token.hpp +0 -91
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +0 -220
- data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +0 -721
- data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +0 -107
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +0 -166
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +0 -713
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +0 -109
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +0 -839
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +0 -127
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +0 -192
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +0 -90
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_message.hpp +0 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_payload.hpp +0 -222
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_payload_handler.hpp +0 -81
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +0 -254
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +0 -94
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +0 -122
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +0 -151
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +0 -1413
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +0 -445
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +0 -341
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +0 -181
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +0 -190
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +0 -189
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +0 -249
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +0 -297
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +0 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +0 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +0 -123
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +0 -268
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +0 -555
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +0 -513
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +0 -333
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +0 -120
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +0 -996
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +0 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +0 -471
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +0 -111
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +0 -828
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +0 -173
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +0 -400
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +0 -207
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +0 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +0 -916
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +0 -251
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +0 -115
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +0 -610
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +0 -76
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +0 -131
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +0 -65
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_serial_port_service.ipp +0 -170
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +0 -234
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +0 -314
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +0 -677
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +0 -402
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +0 -95
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +0 -199
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +0 -828
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +0 -4046
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +0 -187
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +0 -348
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +0 -204
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +0 -99
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_defer.hpp +0 -209
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_dispatch.hpp +0 -195
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_post.hpp +0 -209
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiation_base.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +0 -179
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +0 -197
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +0 -192
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +0 -689
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +0 -191
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +0 -187
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +0 -263
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +0 -116
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +0 -321
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +0 -282
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +0 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +0 -207
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +0 -208
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +0 -194
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +0 -193
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +0 -196
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +0 -631
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +0 -665
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +0 -298
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +0 -273
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +0 -108
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +0 -49
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +0 -62
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +0 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +0 -521
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +0 -62
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +0 -173
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +0 -164
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +0 -91
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +0 -157
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +0 -177
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +0 -120
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +0 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +0 -78
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_serial_port_service.hpp +0 -251
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +0 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +0 -66
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +0 -111
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +0 -81
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +0 -228
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +0 -572
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +0 -133
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +0 -325
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +0 -164
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +0 -199
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +0 -205
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +0 -186
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +0 -202
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +0 -196
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +0 -635
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +0 -757
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +0 -133
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +0 -214
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +0 -116
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +0 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +0 -152
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +0 -243
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +0 -293
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +0 -165
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +0 -46
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +0 -49
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +0 -294
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +0 -377
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +0 -318
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +0 -429
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +0 -185
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +0 -59
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +0 -78
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +0 -175
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +0 -146
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +0 -49
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +0 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +0 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +0 -262
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +0 -57
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timed_cancel_op.hpp +0 -363
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +0 -391
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +0 -105
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +0 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +0 -180
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +0 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +0 -145
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +0 -197
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +0 -199
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +0 -390
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +0 -280
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +0 -1935
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +0 -1362
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +0 -1082
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +0 -193
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +0 -192
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +0 -1004
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +0 -186
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +0 -755
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +0 -330
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +0 -753
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +0 -390
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +0 -365
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +0 -364
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +0 -134
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +0 -538
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +0 -516
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +0 -516
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +0 -303
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +0 -189
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +0 -295
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro_traits.hpp +0 -230
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +0 -363
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +0 -202
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +0 -681
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_completion_handler.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +0 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +0 -625
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +0 -199
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +0 -183
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +0 -63
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +0 -1224
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +0 -790
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +0 -257
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +0 -457
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +0 -226
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +0 -191
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +0 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +0 -168
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +0 -191
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +0 -125
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +0 -135
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +0 -112
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +0 -123
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +0 -124
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +0 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +0 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/immediate.hpp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +0 -136
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +0 -278
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +0 -1198
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +0 -406
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +0 -386
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancel_after.hpp +0 -270
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancel_at.hpp +0 -270
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +0 -98
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +0 -459
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +0 -705
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +0 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +0 -151
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +0 -146
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +0 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +0 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +0 -84
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +0 -319
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +0 -435
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +0 -178
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +0 -172
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +0 -904
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +0 -564
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +0 -2670
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +0 -289
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +0 -556
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +0 -1402
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +0 -36
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +0 -94
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +0 -181
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +0 -279
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +0 -303
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +0 -709
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +0 -782
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +0 -482
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +0 -1507
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +0 -398
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +0 -283
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +0 -423
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +0 -158
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +0 -409
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +0 -180
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +0 -65
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +0 -284
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +0 -1114
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +0 -115
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +0 -190
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +0 -262
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +0 -309
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +0 -143
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +0 -197
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +0 -568
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +0 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +0 -237
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +0 -208
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +0 -344
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +0 -220
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +0 -189
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +0 -193
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +0 -259
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +0 -233
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +0 -131
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +0 -157
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +0 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +0 -63
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +0 -245
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +0 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +0 -141
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +0 -133
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/seq_packet_protocol.hpp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +0 -83
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +0 -775
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +0 -561
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +0 -215
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +0 -581
- data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +0 -315
- data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +0 -1549
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +0 -830
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +0 -3204
- data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +0 -140
- data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +0 -346
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +0 -437
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +0 -347
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +0 -169
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_base.hpp +0 -173
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +0 -561
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +0 -873
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +0 -764
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +0 -211
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +0 -121
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +0 -379
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +0 -378
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +0 -74
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +0 -219
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +0 -78
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +0 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +0 -1324
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +0 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +0 -166
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +0 -1044
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +0 -65
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +0 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +0 -559
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +0 -673
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +0 -269
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +0 -965
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +0 -102
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +0 -104
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +0 -238
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +0 -163
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +0 -161
- data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +0 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +0 -58
- data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +0 -1528
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +0 -843
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +0 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +0 -195
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +0 -1059
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/operator_bool.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/requires_cxx11.hpp +0 -23
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_forward.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_nullptr_t.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/websocketpp/COPYING +0 -145
- data/src/cxx_supportlib/vendor-modified/websocketpp/changelog.md +0 -444
- data/src/cxx_supportlib/vendor-modified/websocketpp/readme.md +0 -49
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/base64/base64.hpp +0 -178
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/client.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/close.hpp +0 -353
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/asio.hpp +0 -141
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/asio_ssl.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/chrono.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/connection_hdl.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/cpp11.hpp +0 -162
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/functional.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/md5.hpp +0 -448
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/memory.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/network.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/platforms.hpp +0 -46
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/random.hpp +0 -82
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/regex.hpp +0 -59
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/stdint.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/system_error.hpp +0 -84
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/thread.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/time.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/type_traits.hpp +0 -65
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/concurrency/basic.hpp +0 -46
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/concurrency/none.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/asio.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/asio_client.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/asio_no_tls.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/asio_no_tls_client.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/boost_config.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/core.hpp +0 -297
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/core_client.hpp +0 -294
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/debug.hpp +0 -286
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/debug_asio.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/debug_asio_no_tls.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/minimal_client.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/minimal_server.hpp +0 -312
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/connection.hpp +0 -1642
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/connection_base.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/endpoint.hpp +0 -700
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/endpoint_base.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/error.hpp +0 -277
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/extension.hpp +0 -102
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +0 -129
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +0 -817
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/frame.hpp +0 -853
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/constants.hpp +0 -308
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/impl/parser.hpp +0 -200
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/impl/request.hpp +0 -191
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/impl/response.hpp +0 -266
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/parser.hpp +0 -629
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/request.hpp +0 -124
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/response.hpp +0 -188
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/connection_impl.hpp +0 -2375
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/endpoint_impl.hpp +0 -269
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/utilities_impl.hpp +0 -87
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/logger/basic.hpp +0 -199
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/logger/levels.hpp +0 -203
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/logger/stub.hpp +0 -119
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/logger/syslog.hpp +0 -146
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/message_buffer/alloc.hpp +0 -105
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/message_buffer/message.hpp +0 -340
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/message_buffer/pool.hpp +0 -229
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/base.hpp +0 -299
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi00.hpp +0 -462
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi07.hpp +0 -78
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi08.hpp +0 -83
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi13.hpp +0 -1072
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/processor.hpp +0 -407
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/random/none.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/random/random_device.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/roles/client_endpoint.hpp +0 -173
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/roles/server_endpoint.hpp +0 -195
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/server.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/sha1/sha1.hpp +0 -189
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/base.hpp +0 -232
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/connection.hpp +0 -1197
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/endpoint.hpp +0 -1182
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/base.hpp +0 -159
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/none.hpp +0 -372
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/tls.hpp +0 -474
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/base/connection.hpp +0 -238
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/base/endpoint.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/base.hpp +0 -104
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/connection.hpp +0 -412
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/endpoint.hpp +0 -140
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/base.hpp +0 -133
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/connection.hpp +0 -714
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/endpoint.hpp +0 -222
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/stub/base.hpp +0 -95
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/stub/connection.hpp +0 -286
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/stub/endpoint.hpp +0 -140
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/uri.hpp +0 -356
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/utf8_validator.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/utilities.hpp +0 -180
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/version.hpp +0 -61
@@ -1,1165 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// basic_stream_socket.hpp
|
3
|
-
// ~~~~~~~~~~~~~~~~~~~~~~~
|
4
|
-
//
|
5
|
-
// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
|
-
//
|
7
|
-
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
|
-
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
9
|
-
//
|
10
|
-
|
11
|
-
#ifndef BOOST_ASIO_BASIC_STREAM_SOCKET_HPP
|
12
|
-
#define BOOST_ASIO_BASIC_STREAM_SOCKET_HPP
|
13
|
-
|
14
|
-
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
15
|
-
# pragma once
|
16
|
-
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
|
17
|
-
|
18
|
-
#include <boost/asio/detail/config.hpp>
|
19
|
-
#include <cstddef>
|
20
|
-
#include <boost/asio/async_result.hpp>
|
21
|
-
#include <boost/asio/basic_socket.hpp>
|
22
|
-
#include <boost/asio/detail/handler_type_requirements.hpp>
|
23
|
-
#include <boost/asio/detail/non_const_lvalue.hpp>
|
24
|
-
#include <boost/asio/detail/throw_error.hpp>
|
25
|
-
#include <boost/asio/error.hpp>
|
26
|
-
|
27
|
-
#include <boost/asio/detail/push_options.hpp>
|
28
|
-
|
29
|
-
namespace boost {
|
30
|
-
namespace asio {
|
31
|
-
|
32
|
-
#if !defined(BOOST_ASIO_BASIC_STREAM_SOCKET_FWD_DECL)
|
33
|
-
#define BOOST_ASIO_BASIC_STREAM_SOCKET_FWD_DECL
|
34
|
-
|
35
|
-
// Forward declaration with defaulted arguments.
|
36
|
-
template <typename Protocol, typename Executor = any_io_executor>
|
37
|
-
class basic_stream_socket;
|
38
|
-
|
39
|
-
#endif // !defined(BOOST_ASIO_BASIC_STREAM_SOCKET_FWD_DECL)
|
40
|
-
|
41
|
-
/// Provides stream-oriented socket functionality.
|
42
|
-
/**
|
43
|
-
* The basic_stream_socket class template provides asynchronous and blocking
|
44
|
-
* stream-oriented socket functionality.
|
45
|
-
*
|
46
|
-
* @par Thread Safety
|
47
|
-
* @e Distinct @e objects: Safe.@n
|
48
|
-
* @e Shared @e objects: Unsafe.
|
49
|
-
*
|
50
|
-
* Synchronous @c send, @c receive, @c connect, and @c shutdown operations are
|
51
|
-
* thread safe with respect to each other, if the underlying operating system
|
52
|
-
* calls are also thread safe. This means that it is permitted to perform
|
53
|
-
* concurrent calls to these synchronous operations on a single socket object.
|
54
|
-
* Other synchronous operations, such as @c open or @c close, are not thread
|
55
|
-
* safe.
|
56
|
-
*
|
57
|
-
* @par Concepts:
|
58
|
-
* AsyncReadStream, AsyncWriteStream, Stream, SyncReadStream, SyncWriteStream.
|
59
|
-
*/
|
60
|
-
template <typename Protocol, typename Executor>
|
61
|
-
class basic_stream_socket
|
62
|
-
: public basic_socket<Protocol, Executor>
|
63
|
-
{
|
64
|
-
private:
|
65
|
-
class initiate_async_send;
|
66
|
-
class initiate_async_receive;
|
67
|
-
|
68
|
-
public:
|
69
|
-
/// The type of the executor associated with the object.
|
70
|
-
typedef Executor executor_type;
|
71
|
-
|
72
|
-
/// Rebinds the socket type to another executor.
|
73
|
-
template <typename Executor1>
|
74
|
-
struct rebind_executor
|
75
|
-
{
|
76
|
-
/// The socket type when rebound to the specified executor.
|
77
|
-
typedef basic_stream_socket<Protocol, Executor1> other;
|
78
|
-
};
|
79
|
-
|
80
|
-
/// The native representation of a socket.
|
81
|
-
#if defined(GENERATING_DOCUMENTATION)
|
82
|
-
typedef implementation_defined native_handle_type;
|
83
|
-
#else
|
84
|
-
typedef typename basic_socket<Protocol,
|
85
|
-
Executor>::native_handle_type native_handle_type;
|
86
|
-
#endif
|
87
|
-
|
88
|
-
/// The protocol type.
|
89
|
-
typedef Protocol protocol_type;
|
90
|
-
|
91
|
-
/// The endpoint type.
|
92
|
-
typedef typename Protocol::endpoint endpoint_type;
|
93
|
-
|
94
|
-
/// Construct a basic_stream_socket without opening it.
|
95
|
-
/**
|
96
|
-
* This constructor creates a stream socket without opening it. The socket
|
97
|
-
* needs to be opened and then connected or accepted before data can be sent
|
98
|
-
* or received on it.
|
99
|
-
*
|
100
|
-
* @param ex The I/O executor that the socket will use, by default, to
|
101
|
-
* dispatch handlers for any asynchronous operations performed on the socket.
|
102
|
-
*/
|
103
|
-
explicit basic_stream_socket(const executor_type& ex)
|
104
|
-
: basic_socket<Protocol, Executor>(ex)
|
105
|
-
{
|
106
|
-
}
|
107
|
-
|
108
|
-
/// Construct a basic_stream_socket without opening it.
|
109
|
-
/**
|
110
|
-
* This constructor creates a stream socket without opening it. The socket
|
111
|
-
* needs to be opened and then connected or accepted before data can be sent
|
112
|
-
* or received on it.
|
113
|
-
*
|
114
|
-
* @param context An execution context which provides the I/O executor that
|
115
|
-
* the socket will use, by default, to dispatch handlers for any asynchronous
|
116
|
-
* operations performed on the socket.
|
117
|
-
*/
|
118
|
-
template <typename ExecutionContext>
|
119
|
-
explicit basic_stream_socket(ExecutionContext& context,
|
120
|
-
constraint_t<
|
121
|
-
is_convertible<ExecutionContext&, execution_context&>::value
|
122
|
-
> = 0)
|
123
|
-
: basic_socket<Protocol, Executor>(context)
|
124
|
-
{
|
125
|
-
}
|
126
|
-
|
127
|
-
/// Construct and open a basic_stream_socket.
|
128
|
-
/**
|
129
|
-
* This constructor creates and opens a stream socket. The socket needs to be
|
130
|
-
* connected or accepted before data can be sent or received on it.
|
131
|
-
*
|
132
|
-
* @param ex The I/O executor that the socket will use, by default, to
|
133
|
-
* dispatch handlers for any asynchronous operations performed on the socket.
|
134
|
-
*
|
135
|
-
* @param protocol An object specifying protocol parameters to be used.
|
136
|
-
*
|
137
|
-
* @throws boost::system::system_error Thrown on failure.
|
138
|
-
*/
|
139
|
-
basic_stream_socket(const executor_type& ex, const protocol_type& protocol)
|
140
|
-
: basic_socket<Protocol, Executor>(ex, protocol)
|
141
|
-
{
|
142
|
-
}
|
143
|
-
|
144
|
-
/// Construct and open a basic_stream_socket.
|
145
|
-
/**
|
146
|
-
* This constructor creates and opens a stream socket. The socket needs to be
|
147
|
-
* connected or accepted before data can be sent or received on it.
|
148
|
-
*
|
149
|
-
* @param context An execution context which provides the I/O executor that
|
150
|
-
* the socket will use, by default, to dispatch handlers for any asynchronous
|
151
|
-
* operations performed on the socket.
|
152
|
-
*
|
153
|
-
* @param protocol An object specifying protocol parameters to be used.
|
154
|
-
*
|
155
|
-
* @throws boost::system::system_error Thrown on failure.
|
156
|
-
*/
|
157
|
-
template <typename ExecutionContext>
|
158
|
-
basic_stream_socket(ExecutionContext& context, const protocol_type& protocol,
|
159
|
-
constraint_t<
|
160
|
-
is_convertible<ExecutionContext&, execution_context&>::value,
|
161
|
-
defaulted_constraint
|
162
|
-
> = defaulted_constraint())
|
163
|
-
: basic_socket<Protocol, Executor>(context, protocol)
|
164
|
-
{
|
165
|
-
}
|
166
|
-
|
167
|
-
/// Construct a basic_stream_socket, opening it and binding it to the given
|
168
|
-
/// local endpoint.
|
169
|
-
/**
|
170
|
-
* This constructor creates a stream socket and automatically opens it bound
|
171
|
-
* to the specified endpoint on the local machine. The protocol used is the
|
172
|
-
* protocol associated with the given endpoint.
|
173
|
-
*
|
174
|
-
* @param ex The I/O executor that the socket will use, by default, to
|
175
|
-
* dispatch handlers for any asynchronous operations performed on the socket.
|
176
|
-
*
|
177
|
-
* @param endpoint An endpoint on the local machine to which the stream
|
178
|
-
* socket will be bound.
|
179
|
-
*
|
180
|
-
* @throws boost::system::system_error Thrown on failure.
|
181
|
-
*/
|
182
|
-
basic_stream_socket(const executor_type& ex, const endpoint_type& endpoint)
|
183
|
-
: basic_socket<Protocol, Executor>(ex, endpoint)
|
184
|
-
{
|
185
|
-
}
|
186
|
-
|
187
|
-
/// Construct a basic_stream_socket, opening it and binding it to the given
|
188
|
-
/// local endpoint.
|
189
|
-
/**
|
190
|
-
* This constructor creates a stream socket and automatically opens it bound
|
191
|
-
* to the specified endpoint on the local machine. The protocol used is the
|
192
|
-
* protocol associated with the given endpoint.
|
193
|
-
*
|
194
|
-
* @param context An execution context which provides the I/O executor that
|
195
|
-
* the socket will use, by default, to dispatch handlers for any asynchronous
|
196
|
-
* operations performed on the socket.
|
197
|
-
*
|
198
|
-
* @param endpoint An endpoint on the local machine to which the stream
|
199
|
-
* socket will be bound.
|
200
|
-
*
|
201
|
-
* @throws boost::system::system_error Thrown on failure.
|
202
|
-
*/
|
203
|
-
template <typename ExecutionContext>
|
204
|
-
basic_stream_socket(ExecutionContext& context, const endpoint_type& endpoint,
|
205
|
-
constraint_t<
|
206
|
-
is_convertible<ExecutionContext&, execution_context&>::value
|
207
|
-
> = 0)
|
208
|
-
: basic_socket<Protocol, Executor>(context, endpoint)
|
209
|
-
{
|
210
|
-
}
|
211
|
-
|
212
|
-
/// Construct a basic_stream_socket on an existing native socket.
|
213
|
-
/**
|
214
|
-
* This constructor creates a stream socket object to hold an existing native
|
215
|
-
* socket.
|
216
|
-
*
|
217
|
-
* @param ex The I/O executor that the socket will use, by default, to
|
218
|
-
* dispatch handlers for any asynchronous operations performed on the socket.
|
219
|
-
*
|
220
|
-
* @param protocol An object specifying protocol parameters to be used.
|
221
|
-
*
|
222
|
-
* @param native_socket The new underlying socket implementation.
|
223
|
-
*
|
224
|
-
* @throws boost::system::system_error Thrown on failure.
|
225
|
-
*/
|
226
|
-
basic_stream_socket(const executor_type& ex,
|
227
|
-
const protocol_type& protocol, const native_handle_type& native_socket)
|
228
|
-
: basic_socket<Protocol, Executor>(ex, protocol, native_socket)
|
229
|
-
{
|
230
|
-
}
|
231
|
-
|
232
|
-
/// Construct a basic_stream_socket on an existing native socket.
|
233
|
-
/**
|
234
|
-
* This constructor creates a stream socket object to hold an existing native
|
235
|
-
* socket.
|
236
|
-
*
|
237
|
-
* @param context An execution context which provides the I/O executor that
|
238
|
-
* the socket will use, by default, to dispatch handlers for any asynchronous
|
239
|
-
* operations performed on the socket.
|
240
|
-
*
|
241
|
-
* @param protocol An object specifying protocol parameters to be used.
|
242
|
-
*
|
243
|
-
* @param native_socket The new underlying socket implementation.
|
244
|
-
*
|
245
|
-
* @throws boost::system::system_error Thrown on failure.
|
246
|
-
*/
|
247
|
-
template <typename ExecutionContext>
|
248
|
-
basic_stream_socket(ExecutionContext& context,
|
249
|
-
const protocol_type& protocol, const native_handle_type& native_socket,
|
250
|
-
constraint_t<
|
251
|
-
is_convertible<ExecutionContext&, execution_context&>::value
|
252
|
-
> = 0)
|
253
|
-
: basic_socket<Protocol, Executor>(context, protocol, native_socket)
|
254
|
-
{
|
255
|
-
}
|
256
|
-
|
257
|
-
/// Move-construct a basic_stream_socket from another.
|
258
|
-
/**
|
259
|
-
* This constructor moves a stream socket from one object to another.
|
260
|
-
*
|
261
|
-
* @param other The other basic_stream_socket object from which the move
|
262
|
-
* will occur.
|
263
|
-
*
|
264
|
-
* @note Following the move, the moved-from object is in the same state as if
|
265
|
-
* constructed using the @c basic_stream_socket(const executor_type&)
|
266
|
-
* constructor.
|
267
|
-
*/
|
268
|
-
basic_stream_socket(basic_stream_socket&& other) noexcept
|
269
|
-
: basic_socket<Protocol, Executor>(std::move(other))
|
270
|
-
{
|
271
|
-
}
|
272
|
-
|
273
|
-
/// Move-assign a basic_stream_socket from another.
|
274
|
-
/**
|
275
|
-
* This assignment operator moves a stream socket from one object to another.
|
276
|
-
*
|
277
|
-
* @param other The other basic_stream_socket object from which the move
|
278
|
-
* will occur.
|
279
|
-
*
|
280
|
-
* @note Following the move, the moved-from object is in the same state as if
|
281
|
-
* constructed using the @c basic_stream_socket(const executor_type&)
|
282
|
-
* constructor.
|
283
|
-
*/
|
284
|
-
basic_stream_socket& operator=(basic_stream_socket&& other)
|
285
|
-
{
|
286
|
-
basic_socket<Protocol, Executor>::operator=(std::move(other));
|
287
|
-
return *this;
|
288
|
-
}
|
289
|
-
|
290
|
-
/// Move-construct a basic_stream_socket from a socket of another protocol
|
291
|
-
/// type.
|
292
|
-
/**
|
293
|
-
* This constructor moves a stream socket from one object to another.
|
294
|
-
*
|
295
|
-
* @param other The other basic_stream_socket object from which the move
|
296
|
-
* will occur.
|
297
|
-
*
|
298
|
-
* @note Following the move, the moved-from object is in the same state as if
|
299
|
-
* constructed using the @c basic_stream_socket(const executor_type&)
|
300
|
-
* constructor.
|
301
|
-
*/
|
302
|
-
template <typename Protocol1, typename Executor1>
|
303
|
-
basic_stream_socket(basic_stream_socket<Protocol1, Executor1>&& other,
|
304
|
-
constraint_t<
|
305
|
-
is_convertible<Protocol1, Protocol>::value
|
306
|
-
&& is_convertible<Executor1, Executor>::value
|
307
|
-
> = 0)
|
308
|
-
: basic_socket<Protocol, Executor>(std::move(other))
|
309
|
-
{
|
310
|
-
}
|
311
|
-
|
312
|
-
/// Move-assign a basic_stream_socket from a socket of another protocol type.
|
313
|
-
/**
|
314
|
-
* This assignment operator moves a stream socket from one object to another.
|
315
|
-
*
|
316
|
-
* @param other The other basic_stream_socket object from which the move
|
317
|
-
* will occur.
|
318
|
-
*
|
319
|
-
* @note Following the move, the moved-from object is in the same state as if
|
320
|
-
* constructed using the @c basic_stream_socket(const executor_type&)
|
321
|
-
* constructor.
|
322
|
-
*/
|
323
|
-
template <typename Protocol1, typename Executor1>
|
324
|
-
constraint_t<
|
325
|
-
is_convertible<Protocol1, Protocol>::value
|
326
|
-
&& is_convertible<Executor1, Executor>::value,
|
327
|
-
basic_stream_socket&
|
328
|
-
> operator=(basic_stream_socket<Protocol1, Executor1>&& other)
|
329
|
-
{
|
330
|
-
basic_socket<Protocol, Executor>::operator=(std::move(other));
|
331
|
-
return *this;
|
332
|
-
}
|
333
|
-
|
334
|
-
/// Destroys the socket.
|
335
|
-
/**
|
336
|
-
* This function destroys the socket, cancelling any outstanding asynchronous
|
337
|
-
* operations associated with the socket as if by calling @c cancel.
|
338
|
-
*/
|
339
|
-
~basic_stream_socket()
|
340
|
-
{
|
341
|
-
}
|
342
|
-
|
343
|
-
/// Send some data on the socket.
|
344
|
-
/**
|
345
|
-
* This function is used to send data on the stream socket. The function
|
346
|
-
* call will block until one or more bytes of the data has been sent
|
347
|
-
* successfully, or an until error occurs.
|
348
|
-
*
|
349
|
-
* @param buffers One or more data buffers to be sent on the socket.
|
350
|
-
*
|
351
|
-
* @returns The number of bytes sent.
|
352
|
-
*
|
353
|
-
* @throws boost::system::system_error Thrown on failure.
|
354
|
-
*
|
355
|
-
* @note The send operation may not transmit all of the data to the peer.
|
356
|
-
* Consider using the @ref write function if you need to ensure that all data
|
357
|
-
* is written before the blocking operation completes.
|
358
|
-
*
|
359
|
-
* @par Example
|
360
|
-
* To send a single data buffer use the @ref buffer function as follows:
|
361
|
-
* @code
|
362
|
-
* socket.send(boost::asio::buffer(data, size));
|
363
|
-
* @endcode
|
364
|
-
* See the @ref buffer documentation for information on sending multiple
|
365
|
-
* buffers in one go, and how to use it with arrays, boost::array or
|
366
|
-
* std::vector.
|
367
|
-
*/
|
368
|
-
template <typename ConstBufferSequence>
|
369
|
-
std::size_t send(const ConstBufferSequence& buffers)
|
370
|
-
{
|
371
|
-
boost::system::error_code ec;
|
372
|
-
std::size_t s = this->impl_.get_service().send(
|
373
|
-
this->impl_.get_implementation(), buffers, 0, ec);
|
374
|
-
boost::asio::detail::throw_error(ec, "send");
|
375
|
-
return s;
|
376
|
-
}
|
377
|
-
|
378
|
-
/// Send some data on the socket.
|
379
|
-
/**
|
380
|
-
* This function is used to send data on the stream socket. The function
|
381
|
-
* call will block until one or more bytes of the data has been sent
|
382
|
-
* successfully, or an until error occurs.
|
383
|
-
*
|
384
|
-
* @param buffers One or more data buffers to be sent on the socket.
|
385
|
-
*
|
386
|
-
* @param flags Flags specifying how the send call is to be made.
|
387
|
-
*
|
388
|
-
* @returns The number of bytes sent.
|
389
|
-
*
|
390
|
-
* @throws boost::system::system_error Thrown on failure.
|
391
|
-
*
|
392
|
-
* @note The send operation may not transmit all of the data to the peer.
|
393
|
-
* Consider using the @ref write function if you need to ensure that all data
|
394
|
-
* is written before the blocking operation completes.
|
395
|
-
*
|
396
|
-
* @par Example
|
397
|
-
* To send a single data buffer use the @ref buffer function as follows:
|
398
|
-
* @code
|
399
|
-
* socket.send(boost::asio::buffer(data, size), 0);
|
400
|
-
* @endcode
|
401
|
-
* See the @ref buffer documentation for information on sending multiple
|
402
|
-
* buffers in one go, and how to use it with arrays, boost::array or
|
403
|
-
* std::vector.
|
404
|
-
*/
|
405
|
-
template <typename ConstBufferSequence>
|
406
|
-
std::size_t send(const ConstBufferSequence& buffers,
|
407
|
-
socket_base::message_flags flags)
|
408
|
-
{
|
409
|
-
boost::system::error_code ec;
|
410
|
-
std::size_t s = this->impl_.get_service().send(
|
411
|
-
this->impl_.get_implementation(), buffers, flags, ec);
|
412
|
-
boost::asio::detail::throw_error(ec, "send");
|
413
|
-
return s;
|
414
|
-
}
|
415
|
-
|
416
|
-
/// Send some data on the socket.
|
417
|
-
/**
|
418
|
-
* This function is used to send data on the stream socket. The function
|
419
|
-
* call will block until one or more bytes of the data has been sent
|
420
|
-
* successfully, or an until error occurs.
|
421
|
-
*
|
422
|
-
* @param buffers One or more data buffers to be sent on the socket.
|
423
|
-
*
|
424
|
-
* @param flags Flags specifying how the send call is to be made.
|
425
|
-
*
|
426
|
-
* @param ec Set to indicate what error occurred, if any.
|
427
|
-
*
|
428
|
-
* @returns The number of bytes sent. Returns 0 if an error occurred.
|
429
|
-
*
|
430
|
-
* @note The send operation may not transmit all of the data to the peer.
|
431
|
-
* Consider using the @ref write function if you need to ensure that all data
|
432
|
-
* is written before the blocking operation completes.
|
433
|
-
*/
|
434
|
-
template <typename ConstBufferSequence>
|
435
|
-
std::size_t send(const ConstBufferSequence& buffers,
|
436
|
-
socket_base::message_flags flags, boost::system::error_code& ec)
|
437
|
-
{
|
438
|
-
return this->impl_.get_service().send(
|
439
|
-
this->impl_.get_implementation(), buffers, flags, ec);
|
440
|
-
}
|
441
|
-
|
442
|
-
/// Start an asynchronous send.
|
443
|
-
/**
|
444
|
-
* This function is used to asynchronously send data on the stream socket.
|
445
|
-
* It is an initiating function for an @ref asynchronous_operation, and always
|
446
|
-
* returns immediately.
|
447
|
-
*
|
448
|
-
* @param buffers One or more data buffers to be sent on the socket. Although
|
449
|
-
* the buffers object may be copied as necessary, ownership of the underlying
|
450
|
-
* memory blocks is retained by the caller, which must guarantee that they
|
451
|
-
* remain valid until the completion handler is called.
|
452
|
-
*
|
453
|
-
* @param token The @ref completion_token that will be used to produce a
|
454
|
-
* completion handler, which will be called when the send completes.
|
455
|
-
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
456
|
-
* @ref yield_context, or a function object with the correct completion
|
457
|
-
* signature. The function signature of the completion handler must be:
|
458
|
-
* @code void handler(
|
459
|
-
* const boost::system::error_code& error, // Result of operation.
|
460
|
-
* std::size_t bytes_transferred // Number of bytes sent.
|
461
|
-
* ); @endcode
|
462
|
-
* Regardless of whether the asynchronous operation completes immediately or
|
463
|
-
* not, the completion handler will not be invoked from within this function.
|
464
|
-
* On immediate completion, invocation of the handler will be performed in a
|
465
|
-
* manner equivalent to using boost::asio::async_immediate().
|
466
|
-
*
|
467
|
-
* @par Completion Signature
|
468
|
-
* @code void(boost::system::error_code, std::size_t) @endcode
|
469
|
-
*
|
470
|
-
* @note The send operation may not transmit all of the data to the peer.
|
471
|
-
* Consider using the @ref async_write function if you need to ensure that all
|
472
|
-
* data is written before the asynchronous operation completes.
|
473
|
-
*
|
474
|
-
* @par Example
|
475
|
-
* To send a single data buffer use the @ref buffer function as follows:
|
476
|
-
* @code
|
477
|
-
* socket.async_send(boost::asio::buffer(data, size), handler);
|
478
|
-
* @endcode
|
479
|
-
* See the @ref buffer documentation for information on sending multiple
|
480
|
-
* buffers in one go, and how to use it with arrays, boost::array or
|
481
|
-
* std::vector.
|
482
|
-
*
|
483
|
-
* @par Per-Operation Cancellation
|
484
|
-
* On POSIX or Windows operating systems, this asynchronous operation supports
|
485
|
-
* cancellation for the following boost::asio::cancellation_type values:
|
486
|
-
*
|
487
|
-
* @li @c cancellation_type::terminal
|
488
|
-
*
|
489
|
-
* @li @c cancellation_type::partial
|
490
|
-
*
|
491
|
-
* @li @c cancellation_type::total
|
492
|
-
*/
|
493
|
-
template <typename ConstBufferSequence,
|
494
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
495
|
-
std::size_t)) WriteToken = default_completion_token_t<executor_type>>
|
496
|
-
auto async_send(const ConstBufferSequence& buffers,
|
497
|
-
WriteToken&& token = default_completion_token_t<executor_type>())
|
498
|
-
-> decltype(
|
499
|
-
async_initiate<WriteToken,
|
500
|
-
void (boost::system::error_code, std::size_t)>(
|
501
|
-
declval<initiate_async_send>(), token,
|
502
|
-
buffers, socket_base::message_flags(0)))
|
503
|
-
{
|
504
|
-
return async_initiate<WriteToken,
|
505
|
-
void (boost::system::error_code, std::size_t)>(
|
506
|
-
initiate_async_send(this), token,
|
507
|
-
buffers, socket_base::message_flags(0));
|
508
|
-
}
|
509
|
-
|
510
|
-
/// Start an asynchronous send.
|
511
|
-
/**
|
512
|
-
* This function is used to asynchronously send data on the stream socket.
|
513
|
-
* It is an initiating function for an @ref asynchronous_operation, and always
|
514
|
-
* returns immediately.
|
515
|
-
*
|
516
|
-
* @param buffers One or more data buffers to be sent on the socket. Although
|
517
|
-
* the buffers object may be copied as necessary, ownership of the underlying
|
518
|
-
* memory blocks is retained by the caller, which must guarantee that they
|
519
|
-
* remain valid until the completion handler is called.
|
520
|
-
*
|
521
|
-
* @param flags Flags specifying how the send call is to be made.
|
522
|
-
*
|
523
|
-
* @param token The @ref completion_token that will be used to produce a
|
524
|
-
* completion handler, which will be called when the send completes.
|
525
|
-
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
526
|
-
* @ref yield_context, or a function object with the correct completion
|
527
|
-
* signature. The function signature of the completion handler must be:
|
528
|
-
* @code void handler(
|
529
|
-
* const boost::system::error_code& error, // Result of operation.
|
530
|
-
* std::size_t bytes_transferred // Number of bytes sent.
|
531
|
-
* ); @endcode
|
532
|
-
* Regardless of whether the asynchronous operation completes immediately or
|
533
|
-
* not, the completion handler will not be invoked from within this function.
|
534
|
-
* On immediate completion, invocation of the handler will be performed in a
|
535
|
-
* manner equivalent to using boost::asio::async_immediate().
|
536
|
-
*
|
537
|
-
* @par Completion Signature
|
538
|
-
* @code void(boost::system::error_code, std::size_t) @endcode
|
539
|
-
*
|
540
|
-
* @note The send operation may not transmit all of the data to the peer.
|
541
|
-
* Consider using the @ref async_write function if you need to ensure that all
|
542
|
-
* data is written before the asynchronous operation completes.
|
543
|
-
*
|
544
|
-
* @par Example
|
545
|
-
* To send a single data buffer use the @ref buffer function as follows:
|
546
|
-
* @code
|
547
|
-
* socket.async_send(boost::asio::buffer(data, size), 0, handler);
|
548
|
-
* @endcode
|
549
|
-
* See the @ref buffer documentation for information on sending multiple
|
550
|
-
* buffers in one go, and how to use it with arrays, boost::array or
|
551
|
-
* std::vector.
|
552
|
-
*
|
553
|
-
* @par Per-Operation Cancellation
|
554
|
-
* On POSIX or Windows operating systems, this asynchronous operation supports
|
555
|
-
* cancellation for the following boost::asio::cancellation_type values:
|
556
|
-
*
|
557
|
-
* @li @c cancellation_type::terminal
|
558
|
-
*
|
559
|
-
* @li @c cancellation_type::partial
|
560
|
-
*
|
561
|
-
* @li @c cancellation_type::total
|
562
|
-
*/
|
563
|
-
template <typename ConstBufferSequence,
|
564
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
565
|
-
std::size_t)) WriteToken = default_completion_token_t<executor_type>>
|
566
|
-
auto async_send(const ConstBufferSequence& buffers,
|
567
|
-
socket_base::message_flags flags,
|
568
|
-
WriteToken&& token = default_completion_token_t<executor_type>())
|
569
|
-
-> decltype(
|
570
|
-
async_initiate<WriteToken,
|
571
|
-
void (boost::system::error_code, std::size_t)>(
|
572
|
-
declval<initiate_async_send>(), token, buffers, flags))
|
573
|
-
{
|
574
|
-
return async_initiate<WriteToken,
|
575
|
-
void (boost::system::error_code, std::size_t)>(
|
576
|
-
initiate_async_send(this), token, buffers, flags);
|
577
|
-
}
|
578
|
-
|
579
|
-
/// Receive some data on the socket.
|
580
|
-
/**
|
581
|
-
* This function is used to receive data on the stream socket. The function
|
582
|
-
* call will block until one or more bytes of data has been received
|
583
|
-
* successfully, or until an error occurs.
|
584
|
-
*
|
585
|
-
* @param buffers One or more buffers into which the data will be received.
|
586
|
-
*
|
587
|
-
* @returns The number of bytes received.
|
588
|
-
*
|
589
|
-
* @throws boost::system::system_error Thrown on failure. An error code of
|
590
|
-
* boost::asio::error::eof indicates that the connection was closed by the
|
591
|
-
* peer.
|
592
|
-
*
|
593
|
-
* @note The receive operation may not receive all of the requested number of
|
594
|
-
* bytes. Consider using the @ref read function if you need to ensure that the
|
595
|
-
* requested amount of data is read before the blocking operation completes.
|
596
|
-
*
|
597
|
-
* @par Example
|
598
|
-
* To receive into a single data buffer use the @ref buffer function as
|
599
|
-
* follows:
|
600
|
-
* @code
|
601
|
-
* socket.receive(boost::asio::buffer(data, size));
|
602
|
-
* @endcode
|
603
|
-
* See the @ref buffer documentation for information on receiving into
|
604
|
-
* multiple buffers in one go, and how to use it with arrays, boost::array or
|
605
|
-
* std::vector.
|
606
|
-
*/
|
607
|
-
template <typename MutableBufferSequence>
|
608
|
-
std::size_t receive(const MutableBufferSequence& buffers)
|
609
|
-
{
|
610
|
-
boost::system::error_code ec;
|
611
|
-
std::size_t s = this->impl_.get_service().receive(
|
612
|
-
this->impl_.get_implementation(), buffers, 0, ec);
|
613
|
-
boost::asio::detail::throw_error(ec, "receive");
|
614
|
-
return s;
|
615
|
-
}
|
616
|
-
|
617
|
-
/// Receive some data on the socket.
|
618
|
-
/**
|
619
|
-
* This function is used to receive data on the stream socket. The function
|
620
|
-
* call will block until one or more bytes of data has been received
|
621
|
-
* successfully, or until an error occurs.
|
622
|
-
*
|
623
|
-
* @param buffers One or more buffers into which the data will be received.
|
624
|
-
*
|
625
|
-
* @param flags Flags specifying how the receive call is to be made.
|
626
|
-
*
|
627
|
-
* @returns The number of bytes received.
|
628
|
-
*
|
629
|
-
* @throws boost::system::system_error Thrown on failure. An error code of
|
630
|
-
* boost::asio::error::eof indicates that the connection was closed by the
|
631
|
-
* peer.
|
632
|
-
*
|
633
|
-
* @note The receive operation may not receive all of the requested number of
|
634
|
-
* bytes. Consider using the @ref read function if you need to ensure that the
|
635
|
-
* requested amount of data is read before the blocking operation completes.
|
636
|
-
*
|
637
|
-
* @par Example
|
638
|
-
* To receive into a single data buffer use the @ref buffer function as
|
639
|
-
* follows:
|
640
|
-
* @code
|
641
|
-
* socket.receive(boost::asio::buffer(data, size), 0);
|
642
|
-
* @endcode
|
643
|
-
* See the @ref buffer documentation for information on receiving into
|
644
|
-
* multiple buffers in one go, and how to use it with arrays, boost::array or
|
645
|
-
* std::vector.
|
646
|
-
*/
|
647
|
-
template <typename MutableBufferSequence>
|
648
|
-
std::size_t receive(const MutableBufferSequence& buffers,
|
649
|
-
socket_base::message_flags flags)
|
650
|
-
{
|
651
|
-
boost::system::error_code ec;
|
652
|
-
std::size_t s = this->impl_.get_service().receive(
|
653
|
-
this->impl_.get_implementation(), buffers, flags, ec);
|
654
|
-
boost::asio::detail::throw_error(ec, "receive");
|
655
|
-
return s;
|
656
|
-
}
|
657
|
-
|
658
|
-
/// Receive some data on a connected socket.
|
659
|
-
/**
|
660
|
-
* This function is used to receive data on the stream socket. The function
|
661
|
-
* call will block until one or more bytes of data has been received
|
662
|
-
* successfully, or until an error occurs.
|
663
|
-
*
|
664
|
-
* @param buffers One or more buffers into which the data will be received.
|
665
|
-
*
|
666
|
-
* @param flags Flags specifying how the receive call is to be made.
|
667
|
-
*
|
668
|
-
* @param ec Set to indicate what error occurred, if any.
|
669
|
-
*
|
670
|
-
* @returns The number of bytes received. Returns 0 if an error occurred.
|
671
|
-
*
|
672
|
-
* @note The receive operation may not receive all of the requested number of
|
673
|
-
* bytes. Consider using the @ref read function if you need to ensure that the
|
674
|
-
* requested amount of data is read before the blocking operation completes.
|
675
|
-
*/
|
676
|
-
template <typename MutableBufferSequence>
|
677
|
-
std::size_t receive(const MutableBufferSequence& buffers,
|
678
|
-
socket_base::message_flags flags, boost::system::error_code& ec)
|
679
|
-
{
|
680
|
-
return this->impl_.get_service().receive(
|
681
|
-
this->impl_.get_implementation(), buffers, flags, ec);
|
682
|
-
}
|
683
|
-
|
684
|
-
/// Start an asynchronous receive.
|
685
|
-
/**
|
686
|
-
* This function is used to asynchronously receive data from the stream
|
687
|
-
* socket. It is an initiating function for an @ref asynchronous_operation,
|
688
|
-
* and always returns immediately.
|
689
|
-
*
|
690
|
-
* @param buffers One or more buffers into which the data will be received.
|
691
|
-
* Although the buffers object may be copied as necessary, ownership of the
|
692
|
-
* underlying memory blocks is retained by the caller, which must guarantee
|
693
|
-
* that they remain valid until the completion handler is called.
|
694
|
-
*
|
695
|
-
* @param token The @ref completion_token that will be used to produce a
|
696
|
-
* completion handler, which will be called when the receive completes.
|
697
|
-
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
698
|
-
* @ref yield_context, or a function object with the correct completion
|
699
|
-
* signature. The function signature of the completion handler must be:
|
700
|
-
* @code void handler(
|
701
|
-
* const boost::system::error_code& error, // Result of operation.
|
702
|
-
* std::size_t bytes_transferred // Number of bytes received.
|
703
|
-
* ); @endcode
|
704
|
-
* Regardless of whether the asynchronous operation completes immediately or
|
705
|
-
* not, the completion handler will not be invoked from within this function.
|
706
|
-
* On immediate completion, invocation of the handler will be performed in a
|
707
|
-
* manner equivalent to using boost::asio::async_immediate().
|
708
|
-
*
|
709
|
-
* @par Completion Signature
|
710
|
-
* @code void(boost::system::error_code, std::size_t) @endcode
|
711
|
-
*
|
712
|
-
* @note The receive operation may not receive all of the requested number of
|
713
|
-
* bytes. Consider using the @ref async_read function if you need to ensure
|
714
|
-
* that the requested amount of data is received before the asynchronous
|
715
|
-
* operation completes.
|
716
|
-
*
|
717
|
-
* @par Example
|
718
|
-
* To receive into a single data buffer use the @ref buffer function as
|
719
|
-
* follows:
|
720
|
-
* @code
|
721
|
-
* socket.async_receive(boost::asio::buffer(data, size), handler);
|
722
|
-
* @endcode
|
723
|
-
* See the @ref buffer documentation for information on receiving into
|
724
|
-
* multiple buffers in one go, and how to use it with arrays, boost::array or
|
725
|
-
* std::vector.
|
726
|
-
*
|
727
|
-
* @par Per-Operation Cancellation
|
728
|
-
* On POSIX or Windows operating systems, this asynchronous operation supports
|
729
|
-
* cancellation for the following boost::asio::cancellation_type values:
|
730
|
-
*
|
731
|
-
* @li @c cancellation_type::terminal
|
732
|
-
*
|
733
|
-
* @li @c cancellation_type::partial
|
734
|
-
*
|
735
|
-
* @li @c cancellation_type::total
|
736
|
-
*/
|
737
|
-
template <typename MutableBufferSequence,
|
738
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
739
|
-
std::size_t)) ReadToken = default_completion_token_t<executor_type>>
|
740
|
-
auto async_receive(const MutableBufferSequence& buffers,
|
741
|
-
ReadToken&& token = default_completion_token_t<executor_type>())
|
742
|
-
-> decltype(
|
743
|
-
async_initiate<ReadToken,
|
744
|
-
void (boost::system::error_code, std::size_t)>(
|
745
|
-
declval<initiate_async_receive>(), token,
|
746
|
-
buffers, socket_base::message_flags(0)))
|
747
|
-
{
|
748
|
-
return async_initiate<ReadToken,
|
749
|
-
void (boost::system::error_code, std::size_t)>(
|
750
|
-
initiate_async_receive(this), token,
|
751
|
-
buffers, socket_base::message_flags(0));
|
752
|
-
}
|
753
|
-
|
754
|
-
/// Start an asynchronous receive.
|
755
|
-
/**
|
756
|
-
* This function is used to asynchronously receive data from the stream
|
757
|
-
* socket. It is an initiating function for an @ref asynchronous_operation,
|
758
|
-
* and always returns immediately.
|
759
|
-
*
|
760
|
-
* @param buffers One or more buffers into which the data will be received.
|
761
|
-
* Although the buffers object may be copied as necessary, ownership of the
|
762
|
-
* underlying memory blocks is retained by the caller, which must guarantee
|
763
|
-
* that they remain valid until the completion handler is called.
|
764
|
-
*
|
765
|
-
* @param flags Flags specifying how the receive call is to be made.
|
766
|
-
*
|
767
|
-
* @param token The @ref completion_token that will be used to produce a
|
768
|
-
* completion handler, which will be called when the receive completes.
|
769
|
-
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
770
|
-
* @ref yield_context, or a function object with the correct completion
|
771
|
-
* signature. The function signature of the completion handler must be:
|
772
|
-
* @code void handler(
|
773
|
-
* const boost::system::error_code& error, // Result of operation.
|
774
|
-
* std::size_t bytes_transferred // Number of bytes received.
|
775
|
-
* ); @endcode
|
776
|
-
* Regardless of whether the asynchronous operation completes immediately or
|
777
|
-
* not, the completion handler will not be invoked from within this function.
|
778
|
-
* On immediate completion, invocation of the handler will be performed in a
|
779
|
-
* manner equivalent to using boost::asio::async_immediate().
|
780
|
-
*
|
781
|
-
* @par Completion Signature
|
782
|
-
* @code void(boost::system::error_code, std::size_t) @endcode
|
783
|
-
*
|
784
|
-
* @note The receive operation may not receive all of the requested number of
|
785
|
-
* bytes. Consider using the @ref async_read function if you need to ensure
|
786
|
-
* that the requested amount of data is received before the asynchronous
|
787
|
-
* operation completes.
|
788
|
-
*
|
789
|
-
* @par Example
|
790
|
-
* To receive into a single data buffer use the @ref buffer function as
|
791
|
-
* follows:
|
792
|
-
* @code
|
793
|
-
* socket.async_receive(boost::asio::buffer(data, size), 0, handler);
|
794
|
-
* @endcode
|
795
|
-
* See the @ref buffer documentation for information on receiving into
|
796
|
-
* multiple buffers in one go, and how to use it with arrays, boost::array or
|
797
|
-
* std::vector.
|
798
|
-
*
|
799
|
-
* @par Per-Operation Cancellation
|
800
|
-
* On POSIX or Windows operating systems, this asynchronous operation supports
|
801
|
-
* cancellation for the following boost::asio::cancellation_type values:
|
802
|
-
*
|
803
|
-
* @li @c cancellation_type::terminal
|
804
|
-
*
|
805
|
-
* @li @c cancellation_type::partial
|
806
|
-
*
|
807
|
-
* @li @c cancellation_type::total
|
808
|
-
*/
|
809
|
-
template <typename MutableBufferSequence,
|
810
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
811
|
-
std::size_t)) ReadToken = default_completion_token_t<executor_type>>
|
812
|
-
auto async_receive(const MutableBufferSequence& buffers,
|
813
|
-
socket_base::message_flags flags,
|
814
|
-
ReadToken&& token = default_completion_token_t<executor_type>())
|
815
|
-
-> decltype(
|
816
|
-
async_initiate<ReadToken,
|
817
|
-
void (boost::system::error_code, std::size_t)>(
|
818
|
-
declval<initiate_async_receive>(), token, buffers, flags))
|
819
|
-
{
|
820
|
-
return async_initiate<ReadToken,
|
821
|
-
void (boost::system::error_code, std::size_t)>(
|
822
|
-
initiate_async_receive(this), token, buffers, flags);
|
823
|
-
}
|
824
|
-
|
825
|
-
/// Write some data to the socket.
|
826
|
-
/**
|
827
|
-
* This function is used to write data to the stream socket. The function call
|
828
|
-
* will block until one or more bytes of the data has been written
|
829
|
-
* successfully, or until an error occurs.
|
830
|
-
*
|
831
|
-
* @param buffers One or more data buffers to be written to the socket.
|
832
|
-
*
|
833
|
-
* @returns The number of bytes written.
|
834
|
-
*
|
835
|
-
* @throws boost::system::system_error Thrown on failure. An error code of
|
836
|
-
* boost::asio::error::eof indicates that the connection was closed by the
|
837
|
-
* peer.
|
838
|
-
*
|
839
|
-
* @note The write_some operation may not transmit all of the data to the
|
840
|
-
* peer. Consider using the @ref write function if you need to ensure that
|
841
|
-
* all data is written before the blocking operation completes.
|
842
|
-
*
|
843
|
-
* @par Example
|
844
|
-
* To write a single data buffer use the @ref buffer function as follows:
|
845
|
-
* @code
|
846
|
-
* socket.write_some(boost::asio::buffer(data, size));
|
847
|
-
* @endcode
|
848
|
-
* See the @ref buffer documentation for information on writing multiple
|
849
|
-
* buffers in one go, and how to use it with arrays, boost::array or
|
850
|
-
* std::vector.
|
851
|
-
*/
|
852
|
-
template <typename ConstBufferSequence>
|
853
|
-
std::size_t write_some(const ConstBufferSequence& buffers)
|
854
|
-
{
|
855
|
-
boost::system::error_code ec;
|
856
|
-
std::size_t s = this->impl_.get_service().send(
|
857
|
-
this->impl_.get_implementation(), buffers, 0, ec);
|
858
|
-
boost::asio::detail::throw_error(ec, "write_some");
|
859
|
-
return s;
|
860
|
-
}
|
861
|
-
|
862
|
-
/// Write some data to the socket.
|
863
|
-
/**
|
864
|
-
* This function is used to write data to the stream socket. The function call
|
865
|
-
* will block until one or more bytes of the data has been written
|
866
|
-
* successfully, or until an error occurs.
|
867
|
-
*
|
868
|
-
* @param buffers One or more data buffers to be written to the socket.
|
869
|
-
*
|
870
|
-
* @param ec Set to indicate what error occurred, if any.
|
871
|
-
*
|
872
|
-
* @returns The number of bytes written. Returns 0 if an error occurred.
|
873
|
-
*
|
874
|
-
* @note The write_some operation may not transmit all of the data to the
|
875
|
-
* peer. Consider using the @ref write function if you need to ensure that
|
876
|
-
* all data is written before the blocking operation completes.
|
877
|
-
*/
|
878
|
-
template <typename ConstBufferSequence>
|
879
|
-
std::size_t write_some(const ConstBufferSequence& buffers,
|
880
|
-
boost::system::error_code& ec)
|
881
|
-
{
|
882
|
-
return this->impl_.get_service().send(
|
883
|
-
this->impl_.get_implementation(), buffers, 0, ec);
|
884
|
-
}
|
885
|
-
|
886
|
-
/// Start an asynchronous write.
|
887
|
-
/**
|
888
|
-
* This function is used to asynchronously write data to the stream socket.
|
889
|
-
* It is an initiating function for an @ref asynchronous_operation, and always
|
890
|
-
* returns immediately.
|
891
|
-
*
|
892
|
-
* @param buffers One or more data buffers to be written to the socket.
|
893
|
-
* Although the buffers object may be copied as necessary, ownership of the
|
894
|
-
* underlying memory blocks is retained by the caller, which must guarantee
|
895
|
-
* that they remain valid until the completion handler is called.
|
896
|
-
*
|
897
|
-
* @param token The @ref completion_token that will be used to produce a
|
898
|
-
* completion handler, which will be called when the write completes.
|
899
|
-
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
900
|
-
* @ref yield_context, or a function object with the correct completion
|
901
|
-
* signature. The function signature of the completion handler must be:
|
902
|
-
* @code void handler(
|
903
|
-
* const boost::system::error_code& error, // Result of operation.
|
904
|
-
* std::size_t bytes_transferred // Number of bytes written.
|
905
|
-
* ); @endcode
|
906
|
-
* Regardless of whether the asynchronous operation completes immediately or
|
907
|
-
* not, the completion handler will not be invoked from within this function.
|
908
|
-
* On immediate completion, invocation of the handler will be performed in a
|
909
|
-
* manner equivalent to using boost::asio::async_immediate().
|
910
|
-
*
|
911
|
-
* @par Completion Signature
|
912
|
-
* @code void(boost::system::error_code, std::size_t) @endcode
|
913
|
-
*
|
914
|
-
* @note The write operation may not transmit all of the data to the peer.
|
915
|
-
* Consider using the @ref async_write function if you need to ensure that all
|
916
|
-
* data is written before the asynchronous operation completes.
|
917
|
-
*
|
918
|
-
* @par Example
|
919
|
-
* To write a single data buffer use the @ref buffer function as follows:
|
920
|
-
* @code
|
921
|
-
* socket.async_write_some(boost::asio::buffer(data, size), handler);
|
922
|
-
* @endcode
|
923
|
-
* See the @ref buffer documentation for information on writing multiple
|
924
|
-
* buffers in one go, and how to use it with arrays, boost::array or
|
925
|
-
* std::vector.
|
926
|
-
*
|
927
|
-
* @par Per-Operation Cancellation
|
928
|
-
* On POSIX or Windows operating systems, this asynchronous operation supports
|
929
|
-
* cancellation for the following boost::asio::cancellation_type values:
|
930
|
-
*
|
931
|
-
* @li @c cancellation_type::terminal
|
932
|
-
*
|
933
|
-
* @li @c cancellation_type::partial
|
934
|
-
*
|
935
|
-
* @li @c cancellation_type::total
|
936
|
-
*/
|
937
|
-
template <typename ConstBufferSequence,
|
938
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
939
|
-
std::size_t)) WriteToken = default_completion_token_t<executor_type>>
|
940
|
-
auto async_write_some(const ConstBufferSequence& buffers,
|
941
|
-
WriteToken&& token = default_completion_token_t<executor_type>())
|
942
|
-
-> decltype(
|
943
|
-
async_initiate<WriteToken,
|
944
|
-
void (boost::system::error_code, std::size_t)>(
|
945
|
-
declval<initiate_async_send>(), token,
|
946
|
-
buffers, socket_base::message_flags(0)))
|
947
|
-
{
|
948
|
-
return async_initiate<WriteToken,
|
949
|
-
void (boost::system::error_code, std::size_t)>(
|
950
|
-
initiate_async_send(this), token,
|
951
|
-
buffers, socket_base::message_flags(0));
|
952
|
-
}
|
953
|
-
|
954
|
-
/// Read some data from the socket.
|
955
|
-
/**
|
956
|
-
* This function is used to read data from the stream socket. The function
|
957
|
-
* call will block until one or more bytes of data has been read successfully,
|
958
|
-
* or until an error occurs.
|
959
|
-
*
|
960
|
-
* @param buffers One or more buffers into which the data will be read.
|
961
|
-
*
|
962
|
-
* @returns The number of bytes read.
|
963
|
-
*
|
964
|
-
* @throws boost::system::system_error Thrown on failure. An error code of
|
965
|
-
* boost::asio::error::eof indicates that the connection was closed by the
|
966
|
-
* peer.
|
967
|
-
*
|
968
|
-
* @note The read_some operation may not read all of the requested number of
|
969
|
-
* bytes. Consider using the @ref read function if you need to ensure that
|
970
|
-
* the requested amount of data is read before the blocking operation
|
971
|
-
* completes.
|
972
|
-
*
|
973
|
-
* @par Example
|
974
|
-
* To read into a single data buffer use the @ref buffer function as follows:
|
975
|
-
* @code
|
976
|
-
* socket.read_some(boost::asio::buffer(data, size));
|
977
|
-
* @endcode
|
978
|
-
* See the @ref buffer documentation for information on reading into multiple
|
979
|
-
* buffers in one go, and how to use it with arrays, boost::array or
|
980
|
-
* std::vector.
|
981
|
-
*/
|
982
|
-
template <typename MutableBufferSequence>
|
983
|
-
std::size_t read_some(const MutableBufferSequence& buffers)
|
984
|
-
{
|
985
|
-
boost::system::error_code ec;
|
986
|
-
std::size_t s = this->impl_.get_service().receive(
|
987
|
-
this->impl_.get_implementation(), buffers, 0, ec);
|
988
|
-
boost::asio::detail::throw_error(ec, "read_some");
|
989
|
-
return s;
|
990
|
-
}
|
991
|
-
|
992
|
-
/// Read some data from the socket.
|
993
|
-
/**
|
994
|
-
* This function is used to read data from the stream socket. The function
|
995
|
-
* call will block until one or more bytes of data has been read successfully,
|
996
|
-
* or until an error occurs.
|
997
|
-
*
|
998
|
-
* @param buffers One or more buffers into which the data will be read.
|
999
|
-
*
|
1000
|
-
* @param ec Set to indicate what error occurred, if any.
|
1001
|
-
*
|
1002
|
-
* @returns The number of bytes read. Returns 0 if an error occurred.
|
1003
|
-
*
|
1004
|
-
* @note The read_some operation may not read all of the requested number of
|
1005
|
-
* bytes. Consider using the @ref read function if you need to ensure that
|
1006
|
-
* the requested amount of data is read before the blocking operation
|
1007
|
-
* completes.
|
1008
|
-
*/
|
1009
|
-
template <typename MutableBufferSequence>
|
1010
|
-
std::size_t read_some(const MutableBufferSequence& buffers,
|
1011
|
-
boost::system::error_code& ec)
|
1012
|
-
{
|
1013
|
-
return this->impl_.get_service().receive(
|
1014
|
-
this->impl_.get_implementation(), buffers, 0, ec);
|
1015
|
-
}
|
1016
|
-
|
1017
|
-
/// Start an asynchronous read.
|
1018
|
-
/**
|
1019
|
-
* This function is used to asynchronously read data from the stream socket.
|
1020
|
-
* socket. It is an initiating function for an @ref asynchronous_operation,
|
1021
|
-
* and always returns immediately.
|
1022
|
-
*
|
1023
|
-
* @param buffers One or more buffers into which the data will be read.
|
1024
|
-
* Although the buffers object may be copied as necessary, ownership of the
|
1025
|
-
* underlying memory blocks is retained by the caller, which must guarantee
|
1026
|
-
* that they remain valid until the completion handler is called.
|
1027
|
-
*
|
1028
|
-
* @param token The @ref completion_token that will be used to produce a
|
1029
|
-
* completion handler, which will be called when the read completes.
|
1030
|
-
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1031
|
-
* @ref yield_context, or a function object with the correct completion
|
1032
|
-
* signature. The function signature of the completion handler must be:
|
1033
|
-
* @code void handler(
|
1034
|
-
* const boost::system::error_code& error, // Result of operation.
|
1035
|
-
* std::size_t bytes_transferred // Number of bytes read.
|
1036
|
-
* ); @endcode
|
1037
|
-
* Regardless of whether the asynchronous operation completes immediately or
|
1038
|
-
* not, the completion handler will not be invoked from within this function.
|
1039
|
-
* On immediate completion, invocation of the handler will be performed in a
|
1040
|
-
* manner equivalent to using boost::asio::async_immediate().
|
1041
|
-
*
|
1042
|
-
* @par Completion Signature
|
1043
|
-
* @code void(boost::system::error_code, std::size_t) @endcode
|
1044
|
-
*
|
1045
|
-
* @note The read operation may not read all of the requested number of bytes.
|
1046
|
-
* Consider using the @ref async_read function if you need to ensure that the
|
1047
|
-
* requested amount of data is read before the asynchronous operation
|
1048
|
-
* completes.
|
1049
|
-
*
|
1050
|
-
* @par Example
|
1051
|
-
* To read into a single data buffer use the @ref buffer function as follows:
|
1052
|
-
* @code
|
1053
|
-
* socket.async_read_some(boost::asio::buffer(data, size), handler);
|
1054
|
-
* @endcode
|
1055
|
-
* See the @ref buffer documentation for information on reading into multiple
|
1056
|
-
* buffers in one go, and how to use it with arrays, boost::array or
|
1057
|
-
* std::vector.
|
1058
|
-
*
|
1059
|
-
* @par Per-Operation Cancellation
|
1060
|
-
* On POSIX or Windows operating systems, this asynchronous operation supports
|
1061
|
-
* cancellation for the following boost::asio::cancellation_type values:
|
1062
|
-
*
|
1063
|
-
* @li @c cancellation_type::terminal
|
1064
|
-
*
|
1065
|
-
* @li @c cancellation_type::partial
|
1066
|
-
*
|
1067
|
-
* @li @c cancellation_type::total
|
1068
|
-
*/
|
1069
|
-
template <typename MutableBufferSequence,
|
1070
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1071
|
-
std::size_t)) ReadToken = default_completion_token_t<executor_type>>
|
1072
|
-
auto async_read_some(const MutableBufferSequence& buffers,
|
1073
|
-
ReadToken&& token = default_completion_token_t<executor_type>())
|
1074
|
-
-> decltype(
|
1075
|
-
async_initiate<ReadToken,
|
1076
|
-
void (boost::system::error_code, std::size_t)>(
|
1077
|
-
declval<initiate_async_receive>(), token,
|
1078
|
-
buffers, socket_base::message_flags(0)))
|
1079
|
-
{
|
1080
|
-
return async_initiate<ReadToken,
|
1081
|
-
void (boost::system::error_code, std::size_t)>(
|
1082
|
-
initiate_async_receive(this), token,
|
1083
|
-
buffers, socket_base::message_flags(0));
|
1084
|
-
}
|
1085
|
-
|
1086
|
-
private:
|
1087
|
-
// Disallow copying and assignment.
|
1088
|
-
basic_stream_socket(const basic_stream_socket&) = delete;
|
1089
|
-
basic_stream_socket& operator=(const basic_stream_socket&) = delete;
|
1090
|
-
|
1091
|
-
class initiate_async_send
|
1092
|
-
{
|
1093
|
-
public:
|
1094
|
-
typedef Executor executor_type;
|
1095
|
-
|
1096
|
-
explicit initiate_async_send(basic_stream_socket* self)
|
1097
|
-
: self_(self)
|
1098
|
-
{
|
1099
|
-
}
|
1100
|
-
|
1101
|
-
const executor_type& get_executor() const noexcept
|
1102
|
-
{
|
1103
|
-
return self_->get_executor();
|
1104
|
-
}
|
1105
|
-
|
1106
|
-
template <typename WriteHandler, typename ConstBufferSequence>
|
1107
|
-
void operator()(WriteHandler&& handler,
|
1108
|
-
const ConstBufferSequence& buffers,
|
1109
|
-
socket_base::message_flags flags) const
|
1110
|
-
{
|
1111
|
-
// If you get an error on the following line it means that your handler
|
1112
|
-
// does not meet the documented type requirements for a WriteHandler.
|
1113
|
-
BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
|
1114
|
-
|
1115
|
-
detail::non_const_lvalue<WriteHandler> handler2(handler);
|
1116
|
-
self_->impl_.get_service().async_send(
|
1117
|
-
self_->impl_.get_implementation(), buffers, flags,
|
1118
|
-
handler2.value, self_->impl_.get_executor());
|
1119
|
-
}
|
1120
|
-
|
1121
|
-
private:
|
1122
|
-
basic_stream_socket* self_;
|
1123
|
-
};
|
1124
|
-
|
1125
|
-
class initiate_async_receive
|
1126
|
-
{
|
1127
|
-
public:
|
1128
|
-
typedef Executor executor_type;
|
1129
|
-
|
1130
|
-
explicit initiate_async_receive(basic_stream_socket* self)
|
1131
|
-
: self_(self)
|
1132
|
-
{
|
1133
|
-
}
|
1134
|
-
|
1135
|
-
const executor_type& get_executor() const noexcept
|
1136
|
-
{
|
1137
|
-
return self_->get_executor();
|
1138
|
-
}
|
1139
|
-
|
1140
|
-
template <typename ReadHandler, typename MutableBufferSequence>
|
1141
|
-
void operator()(ReadHandler&& handler,
|
1142
|
-
const MutableBufferSequence& buffers,
|
1143
|
-
socket_base::message_flags flags) const
|
1144
|
-
{
|
1145
|
-
// If you get an error on the following line it means that your handler
|
1146
|
-
// does not meet the documented type requirements for a ReadHandler.
|
1147
|
-
BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
|
1148
|
-
|
1149
|
-
detail::non_const_lvalue<ReadHandler> handler2(handler);
|
1150
|
-
self_->impl_.get_service().async_receive(
|
1151
|
-
self_->impl_.get_implementation(), buffers, flags,
|
1152
|
-
handler2.value, self_->impl_.get_executor());
|
1153
|
-
}
|
1154
|
-
|
1155
|
-
private:
|
1156
|
-
basic_stream_socket* self_;
|
1157
|
-
};
|
1158
|
-
};
|
1159
|
-
|
1160
|
-
} // namespace asio
|
1161
|
-
} // namespace boost
|
1162
|
-
|
1163
|
-
#include <boost/asio/detail/pop_options.hpp>
|
1164
|
-
|
1165
|
-
#endif // BOOST_ASIO_BASIC_STREAM_SOCKET_HPP
|