passenger 6.0.26 → 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 +28 -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 +8 -6
- 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,1413 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// detail/config.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_DETAIL_CONFIG_HPP
|
12
|
-
#define BOOST_ASIO_DETAIL_CONFIG_HPP
|
13
|
-
|
14
|
-
#if defined(BOOST_ASIO_STANDALONE)
|
15
|
-
# define BOOST_ASIO_DISABLE_BOOST_ALIGN 1
|
16
|
-
# define BOOST_ASIO_DISABLE_BOOST_ARRAY 1
|
17
|
-
# define BOOST_ASIO_DISABLE_BOOST_ASSERT 1
|
18
|
-
# define BOOST_ASIO_DISABLE_BOOST_BIND 1
|
19
|
-
# define BOOST_ASIO_DISABLE_BOOST_CHRONO 1
|
20
|
-
# define BOOST_ASIO_DISABLE_BOOST_DATE_TIME 1
|
21
|
-
# define BOOST_ASIO_DISABLE_BOOST_LIMITS 1
|
22
|
-
# define BOOST_ASIO_DISABLE_BOOST_REGEX 1
|
23
|
-
# define BOOST_ASIO_DISABLE_BOOST_STATIC_CONSTANT 1
|
24
|
-
# define BOOST_ASIO_DISABLE_BOOST_THROW_EXCEPTION 1
|
25
|
-
# define BOOST_ASIO_DISABLE_BOOST_WORKAROUND 1
|
26
|
-
#else // defined(BOOST_ASIO_STANDALONE)
|
27
|
-
// Boost.Config library is available.
|
28
|
-
# include <boost/config.hpp>
|
29
|
-
# include <boost/version.hpp>
|
30
|
-
# define BOOST_ASIO_HAS_BOOST_CONFIG 1
|
31
|
-
#endif // defined(BOOST_ASIO_STANDALONE)
|
32
|
-
|
33
|
-
// Default to a header-only implementation. The user must specifically request
|
34
|
-
// separate compilation by defining either BOOST_ASIO_SEPARATE_COMPILATION or
|
35
|
-
// BOOST_ASIO_DYN_LINK (as a DLL/shared library implies separate compilation).
|
36
|
-
#if !defined(BOOST_ASIO_HEADER_ONLY)
|
37
|
-
# if !defined(BOOST_ASIO_SEPARATE_COMPILATION)
|
38
|
-
# if !defined(BOOST_ASIO_DYN_LINK)
|
39
|
-
# define BOOST_ASIO_HEADER_ONLY 1
|
40
|
-
# endif // !defined(BOOST_ASIO_DYN_LINK)
|
41
|
-
# endif // !defined(BOOST_ASIO_SEPARATE_COMPILATION)
|
42
|
-
#endif // !defined(BOOST_ASIO_HEADER_ONLY)
|
43
|
-
|
44
|
-
#if defined(BOOST_ASIO_HEADER_ONLY)
|
45
|
-
# define BOOST_ASIO_DECL inline
|
46
|
-
#else // defined(BOOST_ASIO_HEADER_ONLY)
|
47
|
-
# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__CODEGEARC__)
|
48
|
-
// We need to import/export our code only if the user has specifically asked
|
49
|
-
// for it by defining BOOST_ASIO_DYN_LINK.
|
50
|
-
# if defined(BOOST_ASIO_DYN_LINK)
|
51
|
-
// Export if this is our own source, otherwise import.
|
52
|
-
# if defined(BOOST_ASIO_SOURCE)
|
53
|
-
# define BOOST_ASIO_DECL __declspec(dllexport)
|
54
|
-
# else // defined(BOOST_ASIO_SOURCE)
|
55
|
-
# define BOOST_ASIO_DECL __declspec(dllimport)
|
56
|
-
# endif // defined(BOOST_ASIO_SOURCE)
|
57
|
-
# endif // defined(BOOST_ASIO_DYN_LINK)
|
58
|
-
# endif // defined(_MSC_VER) || defined(__BORLANDC__) || defined(__CODEGEARC__)
|
59
|
-
#endif // defined(BOOST_ASIO_HEADER_ONLY)
|
60
|
-
|
61
|
-
// If BOOST_ASIO_DECL isn't defined yet define it now.
|
62
|
-
#if !defined(BOOST_ASIO_DECL)
|
63
|
-
# define BOOST_ASIO_DECL
|
64
|
-
#endif // !defined(BOOST_ASIO_DECL)
|
65
|
-
|
66
|
-
// Helper macro for documentation.
|
67
|
-
#define BOOST_ASIO_UNSPECIFIED(e) e
|
68
|
-
|
69
|
-
// Microsoft Visual C++ detection.
|
70
|
-
#if !defined(BOOST_ASIO_MSVC)
|
71
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_MSVC)
|
72
|
-
# define BOOST_ASIO_MSVC BOOST_MSVC
|
73
|
-
# elif defined(_MSC_VER) && (defined(__INTELLISENSE__) \
|
74
|
-
|| (!defined(__MWERKS__) && !defined(__EDG_VERSION__)))
|
75
|
-
# define BOOST_ASIO_MSVC _MSC_VER
|
76
|
-
# endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_MSVC)
|
77
|
-
#endif // !defined(BOOST_ASIO_MSVC)
|
78
|
-
|
79
|
-
// Clang / libc++ detection.
|
80
|
-
#if defined(__clang__)
|
81
|
-
# if (__cplusplus >= 201103)
|
82
|
-
# if __has_include(<__config>)
|
83
|
-
# include <__config>
|
84
|
-
# if defined(_LIBCPP_VERSION)
|
85
|
-
# define BOOST_ASIO_HAS_CLANG_LIBCXX 1
|
86
|
-
# endif // defined(_LIBCPP_VERSION)
|
87
|
-
# endif // __has_include(<__config>)
|
88
|
-
# endif // (__cplusplus >= 201103)
|
89
|
-
#endif // defined(__clang__)
|
90
|
-
|
91
|
-
// Android platform detection.
|
92
|
-
#if defined(__ANDROID__)
|
93
|
-
# include <android/api-level.h>
|
94
|
-
#endif // defined(__ANDROID__)
|
95
|
-
|
96
|
-
// Always enabled. Retained for backwards compatibility in user code.
|
97
|
-
#if !defined(BOOST_ASIO_DISABLE_CXX11_MACROS)
|
98
|
-
# define BOOST_ASIO_HAS_MOVE 1
|
99
|
-
# define BOOST_ASIO_MOVE_ARG(type) type&&
|
100
|
-
# define BOOST_ASIO_MOVE_ARG2(type1, type2) type1, type2&&
|
101
|
-
# define BOOST_ASIO_NONDEDUCED_MOVE_ARG(type) type&
|
102
|
-
# define BOOST_ASIO_MOVE_CAST(type) static_cast<type&&>
|
103
|
-
# define BOOST_ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&>
|
104
|
-
# define BOOST_ASIO_MOVE_OR_LVALUE(type) static_cast<type&&>
|
105
|
-
# define BOOST_ASIO_MOVE_OR_LVALUE_ARG(type) type&&
|
106
|
-
# define BOOST_ASIO_MOVE_OR_LVALUE_TYPE(type) type
|
107
|
-
# define BOOST_ASIO_DELETED = delete
|
108
|
-
# define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
|
109
|
-
# define BOOST_ASIO_HAS_CONSTEXPR 1
|
110
|
-
# define BOOST_ASIO_STATIC_CONSTEXPR(type, assignment) \
|
111
|
-
static constexpr type assignment
|
112
|
-
# define BOOST_ASIO_HAS_NOEXCEPT 1
|
113
|
-
# define BOOST_ASIO_NOEXCEPT noexcept(true)
|
114
|
-
# define BOOST_ASIO_NOEXCEPT_OR_NOTHROW noexcept(true)
|
115
|
-
# define BOOST_ASIO_NOEXCEPT_IF(c) noexcept(c)
|
116
|
-
# define BOOST_ASIO_HAS_DECLTYPE 1
|
117
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX(t) auto
|
118
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX2(t0, t1) auto
|
119
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX3(t0, t1, t2) auto
|
120
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_SUFFIX(expr) -> decltype expr
|
121
|
-
# define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
|
122
|
-
# define BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS 1
|
123
|
-
# define BOOST_ASIO_HAS_ENUM_CLASS 1
|
124
|
-
# define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
|
125
|
-
# define BOOST_ASIO_LVALUE_REF_QUAL &
|
126
|
-
# define BOOST_ASIO_RVALUE_REF_QUAL &&
|
127
|
-
# define BOOST_ASIO_HAS_USER_DEFINED_LITERALS 1
|
128
|
-
# define BOOST_ASIO_HAS_ALIGNOF 1
|
129
|
-
# define BOOST_ASIO_ALIGNOF(T) alignof(T)
|
130
|
-
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
131
|
-
# define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
|
132
|
-
# define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
|
133
|
-
# define BOOST_ASIO_HAS_STD_ARRAY 1
|
134
|
-
# define BOOST_ASIO_HAS_STD_SHARED_PTR 1
|
135
|
-
# define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
|
136
|
-
# define BOOST_ASIO_HAS_STD_ATOMIC 1
|
137
|
-
# define BOOST_ASIO_HAS_STD_CHRONO 1
|
138
|
-
# define BOOST_ASIO_HAS_STD_ADDRESSOF 1
|
139
|
-
# define BOOST_ASIO_HAS_STD_FUNCTION 1
|
140
|
-
# define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
|
141
|
-
# define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
|
142
|
-
# define BOOST_ASIO_HAS_NULLPTR 1
|
143
|
-
# define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
|
144
|
-
# define BOOST_ASIO_HAS_CSTDINT 1
|
145
|
-
# define BOOST_ASIO_HAS_STD_THREAD 1
|
146
|
-
# define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
|
147
|
-
# define BOOST_ASIO_HAS_STD_CALL_ONCE 1
|
148
|
-
# define BOOST_ASIO_HAS_STD_FUTURE 1
|
149
|
-
# define BOOST_ASIO_HAS_STD_TUPLE 1
|
150
|
-
# define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
|
151
|
-
# define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
|
152
|
-
# define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
|
153
|
-
# define BOOST_ASIO_HAS_STD_HASH 1
|
154
|
-
#endif // !defined(BOOST_ASIO_DISABLE_CXX11_MACROS)
|
155
|
-
|
156
|
-
// Support for static constexpr with default initialisation.
|
157
|
-
#if !defined(BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT)
|
158
|
-
# if defined(__GNUC__)
|
159
|
-
# if (__GNUC__ >= 8)
|
160
|
-
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
161
|
-
static constexpr const type name{}
|
162
|
-
# else // (__GNUC__ >= 8)
|
163
|
-
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
164
|
-
static const type name
|
165
|
-
# endif // (__GNUC__ >= 8)
|
166
|
-
# elif defined(BOOST_ASIO_MSVC)
|
167
|
-
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
168
|
-
static const type name
|
169
|
-
# else // defined(BOOST_ASIO_MSVC)
|
170
|
-
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
171
|
-
static constexpr const type name{}
|
172
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
173
|
-
#endif // !defined(BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT)
|
174
|
-
|
175
|
-
// Support noexcept on function types on compilers known to allow it.
|
176
|
-
#if !defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
177
|
-
# if !defined(BOOST_ASIO_DISABLE_NOEXCEPT_FUNCTION_TYPE)
|
178
|
-
# if defined(__clang__)
|
179
|
-
# if (__cplusplus >= 202002)
|
180
|
-
# define BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE 1
|
181
|
-
# endif // (__cplusplus >= 202002)
|
182
|
-
# elif defined(__GNUC__)
|
183
|
-
# if (__cplusplus >= 202002)
|
184
|
-
# define BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE 1
|
185
|
-
# endif // (__cplusplus >= 202002)
|
186
|
-
# elif defined(BOOST_ASIO_MSVC)
|
187
|
-
# if (_MSC_VER >= 1900 && _MSVC_LANG >= 202002)
|
188
|
-
# define BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE 1
|
189
|
-
# endif // (_MSC_VER >= 1900 && _MSVC_LANG >= 202002)
|
190
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
191
|
-
# endif // !defined(BOOST_ASIO_DISABLE_NOEXCEPT_FUNCTION_TYPE)
|
192
|
-
#endif // !defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
193
|
-
|
194
|
-
// Support return type deduction on compilers known to allow it.
|
195
|
-
#if !defined(BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION)
|
196
|
-
# if !defined(BOOST_ASIO_DISABLE_RETURN_TYPE_DEDUCTION)
|
197
|
-
# if defined(__clang__)
|
198
|
-
# if __has_feature(__cxx_return_type_deduction__)
|
199
|
-
# define BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION 1
|
200
|
-
# endif // __has_feature(__cxx_return_type_deduction__)
|
201
|
-
# elif (__cplusplus >= 201402)
|
202
|
-
# define BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION 1
|
203
|
-
# elif defined(__cpp_return_type_deduction)
|
204
|
-
# if (__cpp_return_type_deduction >= 201304)
|
205
|
-
# define BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION 1
|
206
|
-
# endif // (__cpp_return_type_deduction >= 201304)
|
207
|
-
# elif defined(BOOST_ASIO_MSVC)
|
208
|
-
# if (_MSC_VER >= 1900 && _MSVC_LANG >= 201402)
|
209
|
-
# define BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION 1
|
210
|
-
# endif // (_MSC_VER >= 1900 && _MSVC_LANG >= 201402)
|
211
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
212
|
-
# endif // !defined(BOOST_ASIO_DISABLE_RETURN_TYPE_DEDUCTION)
|
213
|
-
#endif // !defined(BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION)
|
214
|
-
|
215
|
-
// Support concepts on compilers known to allow them.
|
216
|
-
#if !defined(BOOST_ASIO_HAS_CONCEPTS)
|
217
|
-
# if !defined(BOOST_ASIO_DISABLE_CONCEPTS)
|
218
|
-
# if defined(__cpp_concepts)
|
219
|
-
# define BOOST_ASIO_HAS_CONCEPTS 1
|
220
|
-
# if (__cpp_concepts >= 201707)
|
221
|
-
# define BOOST_ASIO_CONCEPT concept
|
222
|
-
# else // (__cpp_concepts >= 201707)
|
223
|
-
# define BOOST_ASIO_CONCEPT concept bool
|
224
|
-
# endif // (__cpp_concepts >= 201707)
|
225
|
-
# endif // defined(__cpp_concepts)
|
226
|
-
# endif // !defined(BOOST_ASIO_DISABLE_CONCEPTS)
|
227
|
-
#endif // !defined(BOOST_ASIO_HAS_CONCEPTS)
|
228
|
-
|
229
|
-
// Support concepts on compilers known to allow them.
|
230
|
-
#if !defined(BOOST_ASIO_HAS_STD_CONCEPTS)
|
231
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_CONCEPTS)
|
232
|
-
# if defined(BOOST_ASIO_HAS_CONCEPTS)
|
233
|
-
# if (__cpp_lib_concepts >= 202002L)
|
234
|
-
# define BOOST_ASIO_HAS_STD_CONCEPTS 1
|
235
|
-
# endif // (__cpp_concepts >= 202002L)
|
236
|
-
# endif // defined(BOOST_ASIO_HAS_CONCEPTS)
|
237
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_CONCEPTS)
|
238
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_CONCEPTS)
|
239
|
-
|
240
|
-
// Support template variables on compilers known to allow it.
|
241
|
-
#if !defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES)
|
242
|
-
# if !defined(BOOST_ASIO_DISABLE_VARIABLE_TEMPLATES)
|
243
|
-
# if defined(__clang__)
|
244
|
-
# if (__cplusplus >= 201402)
|
245
|
-
# if __has_feature(__cxx_variable_templates__)
|
246
|
-
# define BOOST_ASIO_HAS_VARIABLE_TEMPLATES 1
|
247
|
-
# endif // __has_feature(__cxx_variable_templates__)
|
248
|
-
# endif // (__cplusplus >= 201402)
|
249
|
-
# elif defined(__GNUC__) && !defined(__INTEL_COMPILER)
|
250
|
-
# if (__GNUC__ >= 6)
|
251
|
-
# if (__cplusplus >= 201402)
|
252
|
-
# define BOOST_ASIO_HAS_VARIABLE_TEMPLATES 1
|
253
|
-
# endif // (__cplusplus >= 201402)
|
254
|
-
# endif // (__GNUC__ >= 6)
|
255
|
-
# endif // defined(__GNUC__) && !defined(__INTEL_COMPILER)
|
256
|
-
# if defined(BOOST_ASIO_MSVC)
|
257
|
-
# if (_MSC_VER >= 1901)
|
258
|
-
# define BOOST_ASIO_HAS_VARIABLE_TEMPLATES 1
|
259
|
-
# endif // (_MSC_VER >= 1901)
|
260
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
261
|
-
# endif // !defined(BOOST_ASIO_DISABLE_VARIABLE_TEMPLATES)
|
262
|
-
#endif // !defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES)
|
263
|
-
|
264
|
-
// Support SFINAEd template variables on compilers known to allow it.
|
265
|
-
#if !defined(BOOST_ASIO_HAS_SFINAE_VARIABLE_TEMPLATES)
|
266
|
-
# if !defined(BOOST_ASIO_DISABLE_SFINAE_VARIABLE_TEMPLATES)
|
267
|
-
# if defined(__clang__)
|
268
|
-
# if (__cplusplus >= 201703)
|
269
|
-
# if __has_feature(__cxx_variable_templates__)
|
270
|
-
# define BOOST_ASIO_HAS_SFINAE_VARIABLE_TEMPLATES 1
|
271
|
-
# endif // __has_feature(__cxx_variable_templates__)
|
272
|
-
# endif // (__cplusplus >= 201703)
|
273
|
-
# elif defined(__GNUC__)
|
274
|
-
# if ((__GNUC__ == 8) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 8)
|
275
|
-
# if (__cplusplus >= 201402)
|
276
|
-
# define BOOST_ASIO_HAS_SFINAE_VARIABLE_TEMPLATES 1
|
277
|
-
# endif // (__cplusplus >= 201402)
|
278
|
-
# endif // ((__GNUC__ == 8) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 8)
|
279
|
-
# endif // defined(__GNUC__)
|
280
|
-
# if defined(BOOST_ASIO_MSVC)
|
281
|
-
# if (_MSC_VER >= 1901)
|
282
|
-
# define BOOST_ASIO_HAS_SFINAE_VARIABLE_TEMPLATES 1
|
283
|
-
# endif // (_MSC_VER >= 1901)
|
284
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
285
|
-
# endif // !defined(BOOST_ASIO_DISABLE_SFINAE_VARIABLE_TEMPLATES)
|
286
|
-
#endif // !defined(BOOST_ASIO_HAS_SFINAE_VARIABLE_TEMPLATES)
|
287
|
-
|
288
|
-
// Support SFINAE use of constant expressions on compilers known to allow it.
|
289
|
-
#if !defined(BOOST_ASIO_HAS_CONSTANT_EXPRESSION_SFINAE)
|
290
|
-
# if !defined(BOOST_ASIO_DISABLE_CONSTANT_EXPRESSION_SFINAE)
|
291
|
-
# if defined(__clang__)
|
292
|
-
# if (__cplusplus >= 201402)
|
293
|
-
# define BOOST_ASIO_HAS_CONSTANT_EXPRESSION_SFINAE 1
|
294
|
-
# endif // (__cplusplus >= 201402)
|
295
|
-
# elif defined(__GNUC__) && !defined(__INTEL_COMPILER)
|
296
|
-
# if (__GNUC__ >= 7)
|
297
|
-
# if (__cplusplus >= 201402)
|
298
|
-
# define BOOST_ASIO_HAS_CONSTANT_EXPRESSION_SFINAE 1
|
299
|
-
# endif // (__cplusplus >= 201402)
|
300
|
-
# endif // (__GNUC__ >= 7)
|
301
|
-
# endif // defined(__GNUC__) && !defined(__INTEL_COMPILER)
|
302
|
-
# if defined(BOOST_ASIO_MSVC)
|
303
|
-
# if (_MSC_VER >= 1901)
|
304
|
-
# define BOOST_ASIO_HAS_CONSTANT_EXPRESSION_SFINAE 1
|
305
|
-
# endif // (_MSC_VER >= 1901)
|
306
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
307
|
-
# endif // !defined(BOOST_ASIO_DISABLE_CONSTANT_EXPRESSION_SFINAE)
|
308
|
-
#endif // !defined(BOOST_ASIO_HAS_CONSTANT_EXPRESSION_SFINAE)
|
309
|
-
|
310
|
-
// Enable workarounds for lack of working expression SFINAE.
|
311
|
-
#if !defined(BOOST_ASIO_HAS_WORKING_EXPRESSION_SFINAE)
|
312
|
-
# if !defined(BOOST_ASIO_DISABLE_WORKING_EXPRESSION_SFINAE)
|
313
|
-
# if !defined(BOOST_ASIO_MSVC) && !defined(__INTEL_COMPILER)
|
314
|
-
# if (__cplusplus >= 201103)
|
315
|
-
# define BOOST_ASIO_HAS_WORKING_EXPRESSION_SFINAE 1
|
316
|
-
# endif // (__cplusplus >= 201103)
|
317
|
-
# elif defined(BOOST_ASIO_MSVC) && (_MSC_VER >= 1929)
|
318
|
-
# if (_MSVC_LANG >= 202000)
|
319
|
-
# define BOOST_ASIO_HAS_WORKING_EXPRESSION_SFINAE 1
|
320
|
-
# endif // (_MSVC_LANG >= 202000)
|
321
|
-
# endif // defined(BOOST_ASIO_MSVC) && (_MSC_VER >= 1929)
|
322
|
-
# endif // !defined(BOOST_ASIO_DISABLE_WORKING_EXPRESSION_SFINAE)
|
323
|
-
#endif // !defined(BOOST_ASIO_HAS_WORKING_EXPRESSION_SFINAE)
|
324
|
-
|
325
|
-
// Support for capturing parameter packs in lambdas.
|
326
|
-
#if !defined(BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
|
327
|
-
# if !defined(BOOST_ASIO_DISABLE_VARIADIC_LAMBDA_CAPTURES)
|
328
|
-
# if defined(__GNUC__)
|
329
|
-
# if (__GNUC__ >= 6)
|
330
|
-
# define BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES 1
|
331
|
-
# endif // (__GNUC__ >= 6)
|
332
|
-
# elif defined(BOOST_ASIO_MSVC)
|
333
|
-
# if (_MSVC_LANG >= 201103)
|
334
|
-
# define BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES 1
|
335
|
-
# endif // (_MSC_LANG >= 201103)
|
336
|
-
# else // defined(BOOST_ASIO_MSVC)
|
337
|
-
# if (__cplusplus >= 201103)
|
338
|
-
# define BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES 1
|
339
|
-
# endif // (__cplusplus >= 201103)
|
340
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
341
|
-
# endif // !defined(BOOST_ASIO_DISABLE_VARIADIC_LAMBDA_CAPTURES)
|
342
|
-
#endif // !defined(BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
|
343
|
-
|
344
|
-
// Support for inline variables.
|
345
|
-
#if !defined(BOOST_ASIO_HAS_INLINE_VARIABLES)
|
346
|
-
# if !defined(BOOST_ASIO_DISABLE_INLINE_VARIABLES)
|
347
|
-
# if (__cplusplus >= 201703) && (__cpp_inline_variables >= 201606)
|
348
|
-
# define BOOST_ASIO_HAS_INLINE_VARIABLES 1
|
349
|
-
# define BOOST_ASIO_INLINE_VARIABLE inline
|
350
|
-
# endif // (__cplusplus >= 201703) && (__cpp_inline_variables >= 201606)
|
351
|
-
# endif // !defined(BOOST_ASIO_DISABLE_INLINE_VARIABLES)
|
352
|
-
#endif // !defined(BOOST_ASIO_HAS_INLINE_VARIABLES)
|
353
|
-
#if !defined(BOOST_ASIO_INLINE_VARIABLE)
|
354
|
-
# define BOOST_ASIO_INLINE_VARIABLE
|
355
|
-
#endif // !defined(BOOST_ASIO_INLINE_VARIABLE)
|
356
|
-
|
357
|
-
// Default alignment.
|
358
|
-
#if defined(__STDCPP_DEFAULT_NEW_ALIGNMENT__)
|
359
|
-
# define BOOST_ASIO_DEFAULT_ALIGN __STDCPP_DEFAULT_NEW_ALIGNMENT__
|
360
|
-
#elif defined(__GNUC__)
|
361
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
362
|
-
# define BOOST_ASIO_DEFAULT_ALIGN alignof(std::max_align_t)
|
363
|
-
# else // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
364
|
-
# define BOOST_ASIO_DEFAULT_ALIGN alignof(max_align_t)
|
365
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
366
|
-
#else // defined(__GNUC__)
|
367
|
-
# define BOOST_ASIO_DEFAULT_ALIGN alignof(std::max_align_t)
|
368
|
-
#endif // defined(__GNUC__)
|
369
|
-
|
370
|
-
// Standard library support for aligned allocation.
|
371
|
-
#if !defined(BOOST_ASIO_HAS_STD_ALIGNED_ALLOC)
|
372
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_ALIGNED_ALLOC)
|
373
|
-
# if (__cplusplus >= 201703)
|
374
|
-
# if defined(__clang__)
|
375
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
376
|
-
# if (_LIBCPP_STD_VER > 14) && defined(_LIBCPP_HAS_ALIGNED_ALLOC) \
|
377
|
-
&& !defined(_LIBCPP_MSVCRT) && !defined(__MINGW32__)
|
378
|
-
# if defined(__ANDROID__) && (__ANDROID_API__ >= 28)
|
379
|
-
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
|
380
|
-
# elif defined(__APPLE__)
|
381
|
-
# if defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
|
382
|
-
# if (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101500)
|
383
|
-
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
|
384
|
-
# endif // (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101500)
|
385
|
-
# elif defined(__IPHONE_OS_VERSION_MIN_REQUIRED)
|
386
|
-
# if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 130000)
|
387
|
-
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
|
388
|
-
# endif // (__IPHONE_OS_VERSION_MIN_REQUIRED >= 130000)
|
389
|
-
# elif defined(__TV_OS_VERSION_MIN_REQUIRED)
|
390
|
-
# if (__TV_OS_VERSION_MIN_REQUIRED >= 130000)
|
391
|
-
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
|
392
|
-
# endif // (__TV_OS_VERSION_MIN_REQUIRED >= 130000)
|
393
|
-
# elif defined(__WATCH_OS_VERSION_MIN_REQUIRED)
|
394
|
-
# if (__WATCH_OS_VERSION_MIN_REQUIRED >= 60000)
|
395
|
-
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
|
396
|
-
# endif // (__WATCH_OS_VERSION_MIN_REQUIRED >= 60000)
|
397
|
-
# endif // defined(__WATCH_OS_X_VERSION_MIN_REQUIRED)
|
398
|
-
# else // defined(__APPLE__)
|
399
|
-
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
|
400
|
-
# endif // defined(__APPLE__)
|
401
|
-
# endif // (_LIBCPP_STD_VER > 14) && defined(_LIBCPP_HAS_ALIGNED_ALLOC)
|
402
|
-
// && !defined(_LIBCPP_MSVCRT) && !defined(__MINGW32__)
|
403
|
-
# elif defined(_GLIBCXX_HAVE_ALIGNED_ALLOC)
|
404
|
-
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
|
405
|
-
# endif // defined(_GLIBCXX_HAVE_ALIGNED_ALLOC)
|
406
|
-
# elif defined(__GNUC__)
|
407
|
-
# if ((__GNUC__ == 7) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 7)
|
408
|
-
# if defined(_GLIBCXX_HAVE_ALIGNED_ALLOC)
|
409
|
-
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
|
410
|
-
# endif // defined(_GLIBCXX_HAVE_ALIGNED_ALLOC)
|
411
|
-
# endif // ((__GNUC__ == 7) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 7)
|
412
|
-
# endif // defined(__GNUC__)
|
413
|
-
# endif // (__cplusplus >= 201703)
|
414
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_ALIGNED_ALLOC)
|
415
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_ALIGNED_ALLOC)
|
416
|
-
|
417
|
-
// Boost support for chrono.
|
418
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_CHRONO)
|
419
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_CHRONO)
|
420
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 104700)
|
421
|
-
# define BOOST_ASIO_HAS_BOOST_CHRONO 1
|
422
|
-
# endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 104700)
|
423
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_CHRONO)
|
424
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_CHRONO)
|
425
|
-
|
426
|
-
// Some form of chrono library is available.
|
427
|
-
#if !defined(BOOST_ASIO_HAS_CHRONO)
|
428
|
-
# if defined(BOOST_ASIO_HAS_STD_CHRONO) \
|
429
|
-
|| defined(BOOST_ASIO_HAS_BOOST_CHRONO)
|
430
|
-
# define BOOST_ASIO_HAS_CHRONO 1
|
431
|
-
# endif // defined(BOOST_ASIO_HAS_STD_CHRONO)
|
432
|
-
// || defined(BOOST_ASIO_HAS_BOOST_CHRONO)
|
433
|
-
#endif // !defined(BOOST_ASIO_HAS_CHRONO)
|
434
|
-
|
435
|
-
// Boost support for the DateTime library.
|
436
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_DATE_TIME)
|
437
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_DATE_TIME)
|
438
|
-
# define BOOST_ASIO_HAS_BOOST_DATE_TIME 1
|
439
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_DATE_TIME)
|
440
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_DATE_TIME)
|
441
|
-
|
442
|
-
// Boost support for the Coroutine library.
|
443
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
444
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_COROUTINE)
|
445
|
-
# define BOOST_ASIO_HAS_BOOST_COROUTINE 1
|
446
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_COROUTINE)
|
447
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
448
|
-
|
449
|
-
// Boost support for the Context library's fibers.
|
450
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER)
|
451
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_CONTEXT_FIBER)
|
452
|
-
# if defined(__clang__)
|
453
|
-
# if (__cplusplus >= 201103)
|
454
|
-
# define BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER 1
|
455
|
-
# endif // (__cplusplus >= 201103)
|
456
|
-
# elif defined(__GNUC__)
|
457
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
458
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
459
|
-
# define BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER 1
|
460
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
461
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
462
|
-
# endif // defined(__GNUC__)
|
463
|
-
# if defined(BOOST_ASIO_MSVC)
|
464
|
-
# if (_MSVC_LANG >= 201103)
|
465
|
-
# define BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER 1
|
466
|
-
# endif // (_MSC_LANG >= 201103)
|
467
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
468
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_CONTEXT_FIBER)
|
469
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER)
|
470
|
-
|
471
|
-
// Standard library support for std::string_view.
|
472
|
-
#if !defined(BOOST_ASIO_HAS_STD_STRING_VIEW)
|
473
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_STRING_VIEW)
|
474
|
-
# if defined(__clang__)
|
475
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
476
|
-
# if (__cplusplus >= 201402)
|
477
|
-
# if __has_include(<string_view>)
|
478
|
-
# define BOOST_ASIO_HAS_STD_STRING_VIEW 1
|
479
|
-
# endif // __has_include(<string_view>)
|
480
|
-
# endif // (__cplusplus >= 201402)
|
481
|
-
# else // defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
482
|
-
# if (__cplusplus >= 201703)
|
483
|
-
# if __has_include(<string_view>)
|
484
|
-
# define BOOST_ASIO_HAS_STD_STRING_VIEW 1
|
485
|
-
# endif // __has_include(<string_view>)
|
486
|
-
# endif // (__cplusplus >= 201703)
|
487
|
-
# endif // defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
488
|
-
# elif defined(__GNUC__)
|
489
|
-
# if (__GNUC__ >= 7)
|
490
|
-
# if (__cplusplus >= 201703)
|
491
|
-
# define BOOST_ASIO_HAS_STD_STRING_VIEW 1
|
492
|
-
# endif // (__cplusplus >= 201703)
|
493
|
-
# endif // (__GNUC__ >= 7)
|
494
|
-
# elif defined(BOOST_ASIO_MSVC)
|
495
|
-
# if (_MSC_VER >= 1910 && _MSVC_LANG >= 201703)
|
496
|
-
# define BOOST_ASIO_HAS_STD_STRING_VIEW 1
|
497
|
-
# endif // (_MSC_VER >= 1910 && _MSVC_LANG >= 201703)
|
498
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
499
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_STRING_VIEW)
|
500
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_STRING_VIEW)
|
501
|
-
|
502
|
-
// Standard library support for std::experimental::string_view.
|
503
|
-
#if !defined(BOOST_ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW)
|
504
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_EXPERIMENTAL_STRING_VIEW)
|
505
|
-
# if defined(__clang__)
|
506
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
507
|
-
# if (_LIBCPP_VERSION < 7000)
|
508
|
-
# if (__cplusplus >= 201402)
|
509
|
-
# if __has_include(<experimental/string_view>)
|
510
|
-
# define BOOST_ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW 1
|
511
|
-
# endif // __has_include(<experimental/string_view>)
|
512
|
-
# endif // (__cplusplus >= 201402)
|
513
|
-
# endif // (_LIBCPP_VERSION < 7000)
|
514
|
-
# else // defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
515
|
-
# if (__cplusplus >= 201402)
|
516
|
-
# if __has_include(<experimental/string_view>)
|
517
|
-
# define BOOST_ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW 1
|
518
|
-
# endif // __has_include(<experimental/string_view>)
|
519
|
-
# endif // (__cplusplus >= 201402)
|
520
|
-
# endif // // defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
521
|
-
# elif defined(__GNUC__)
|
522
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
523
|
-
# if (__cplusplus >= 201402)
|
524
|
-
# define BOOST_ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW 1
|
525
|
-
# endif // (__cplusplus >= 201402)
|
526
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
527
|
-
# endif // defined(__GNUC__)
|
528
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_EXPERIMENTAL_STRING_VIEW)
|
529
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW)
|
530
|
-
|
531
|
-
// Standard library has a string_view that we can use.
|
532
|
-
#if !defined(BOOST_ASIO_HAS_STRING_VIEW)
|
533
|
-
# if !defined(BOOST_ASIO_DISABLE_STRING_VIEW)
|
534
|
-
# if defined(BOOST_ASIO_HAS_STD_STRING_VIEW)
|
535
|
-
# define BOOST_ASIO_HAS_STRING_VIEW 1
|
536
|
-
# elif defined(BOOST_ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW)
|
537
|
-
# define BOOST_ASIO_HAS_STRING_VIEW 1
|
538
|
-
# endif // defined(BOOST_ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW)
|
539
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STRING_VIEW)
|
540
|
-
#endif // !defined(BOOST_ASIO_HAS_STRING_VIEW)
|
541
|
-
|
542
|
-
// Standard library has invoke_result (which supersedes result_of).
|
543
|
-
#if !defined(BOOST_ASIO_HAS_STD_INVOKE_RESULT)
|
544
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_INVOKE_RESULT)
|
545
|
-
# if defined(BOOST_ASIO_MSVC)
|
546
|
-
# if (_MSC_VER >= 1911 && _MSVC_LANG >= 201703)
|
547
|
-
# define BOOST_ASIO_HAS_STD_INVOKE_RESULT 1
|
548
|
-
# endif // (_MSC_VER >= 1911 && _MSVC_LANG >= 201703)
|
549
|
-
# else // defined(BOOST_ASIO_MSVC)
|
550
|
-
# if (__cplusplus >= 201703) && (__cpp_lib_is_invocable >= 201703)
|
551
|
-
# define BOOST_ASIO_HAS_STD_INVOKE_RESULT 1
|
552
|
-
# endif // (__cplusplus >= 201703) && (__cpp_lib_is_invocable >= 201703)
|
553
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
554
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_INVOKE_RESULT)
|
555
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_INVOKE_RESULT)
|
556
|
-
|
557
|
-
// Standard library support for std::any.
|
558
|
-
#if !defined(BOOST_ASIO_HAS_STD_ANY)
|
559
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_ANY)
|
560
|
-
# if defined(__clang__)
|
561
|
-
# if (__cplusplus >= 201703)
|
562
|
-
# if __has_include(<any>)
|
563
|
-
# define BOOST_ASIO_HAS_STD_ANY 1
|
564
|
-
# endif // __has_include(<any>)
|
565
|
-
# endif // (__cplusplus >= 201703)
|
566
|
-
# elif defined(__GNUC__)
|
567
|
-
# if (__GNUC__ >= 7)
|
568
|
-
# if (__cplusplus >= 201703)
|
569
|
-
# define BOOST_ASIO_HAS_STD_ANY 1
|
570
|
-
# endif // (__cplusplus >= 201703)
|
571
|
-
# endif // (__GNUC__ >= 7)
|
572
|
-
# endif // defined(__GNUC__)
|
573
|
-
# if defined(BOOST_ASIO_MSVC)
|
574
|
-
# if (_MSC_VER >= 1910) && (_MSVC_LANG >= 201703)
|
575
|
-
# define BOOST_ASIO_HAS_STD_ANY 1
|
576
|
-
# endif // (_MSC_VER >= 1910) && (_MSVC_LANG >= 201703)
|
577
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
578
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_ANY)
|
579
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_ANY)
|
580
|
-
|
581
|
-
// Standard library support for std::variant.
|
582
|
-
#if !defined(BOOST_ASIO_HAS_STD_VARIANT)
|
583
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_VARIANT)
|
584
|
-
# if defined(__clang__)
|
585
|
-
# if (__cplusplus >= 201703)
|
586
|
-
# if __has_include(<variant>)
|
587
|
-
# define BOOST_ASIO_HAS_STD_VARIANT 1
|
588
|
-
# endif // __has_include(<variant>)
|
589
|
-
# endif // (__cplusplus >= 201703)
|
590
|
-
# elif defined(__GNUC__)
|
591
|
-
# if (__GNUC__ >= 7)
|
592
|
-
# if (__cplusplus >= 201703)
|
593
|
-
# define BOOST_ASIO_HAS_STD_VARIANT 1
|
594
|
-
# endif // (__cplusplus >= 201703)
|
595
|
-
# endif // (__GNUC__ >= 7)
|
596
|
-
# endif // defined(__GNUC__)
|
597
|
-
# if defined(BOOST_ASIO_MSVC)
|
598
|
-
# if (_MSC_VER >= 1910) && (_MSVC_LANG >= 201703)
|
599
|
-
# define BOOST_ASIO_HAS_STD_VARIANT 1
|
600
|
-
# endif // (_MSC_VER >= 1910) && (_MSVC_LANG >= 201703)
|
601
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
602
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_VARIANT)
|
603
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_VARIANT)
|
604
|
-
|
605
|
-
// Standard library support for std::source_location.
|
606
|
-
#if !defined(BOOST_ASIO_HAS_STD_SOURCE_LOCATION)
|
607
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_SOURCE_LOCATION)
|
608
|
-
// ...
|
609
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_SOURCE_LOCATION)
|
610
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_SOURCE_LOCATION)
|
611
|
-
|
612
|
-
// Standard library support for std::experimental::source_location.
|
613
|
-
#if !defined(BOOST_ASIO_HAS_STD_EXPERIMENTAL_SOURCE_LOCATION)
|
614
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_EXPERIMENTAL_SOURCE_LOCATION)
|
615
|
-
# if defined(__GNUC__)
|
616
|
-
# if (__cplusplus >= 201709)
|
617
|
-
# if __has_include(<experimental/source_location>)
|
618
|
-
# define BOOST_ASIO_HAS_STD_EXPERIMENTAL_SOURCE_LOCATION 1
|
619
|
-
# endif // __has_include(<experimental/source_location>)
|
620
|
-
# endif // (__cplusplus >= 201709)
|
621
|
-
# endif // defined(__GNUC__)
|
622
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_EXPERIMENTAL_SOURCE_LOCATION)
|
623
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_EXPERIMENTAL_SOURCE_LOCATION)
|
624
|
-
|
625
|
-
// Standard library has a source_location that we can use.
|
626
|
-
#if !defined(BOOST_ASIO_HAS_SOURCE_LOCATION)
|
627
|
-
# if !defined(BOOST_ASIO_DISABLE_SOURCE_LOCATION)
|
628
|
-
# if defined(BOOST_ASIO_HAS_STD_SOURCE_LOCATION)
|
629
|
-
# define BOOST_ASIO_HAS_SOURCE_LOCATION 1
|
630
|
-
# elif defined(BOOST_ASIO_HAS_STD_EXPERIMENTAL_SOURCE_LOCATION)
|
631
|
-
# define BOOST_ASIO_HAS_SOURCE_LOCATION 1
|
632
|
-
# endif // defined(BOOST_ASIO_HAS_STD_EXPERIMENTAL_SOURCE_LOCATION)
|
633
|
-
# endif // !defined(BOOST_ASIO_DISABLE_SOURCE_LOCATION)
|
634
|
-
#endif // !defined(BOOST_ASIO_HAS_SOURCE_LOCATION)
|
635
|
-
|
636
|
-
// Boost support for source_location and system errors.
|
637
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_SOURCE_LOCATION)
|
638
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_SOURCE_LOCATION)
|
639
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 107900)
|
640
|
-
# define BOOST_ASIO_HAS_BOOST_SOURCE_LOCATION 1
|
641
|
-
# endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 107900)
|
642
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_SOURCE_LOCATION)
|
643
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_SOURCE_LOCATION)
|
644
|
-
|
645
|
-
// Helper macros for working with Boost source locations.
|
646
|
-
#if defined(BOOST_ASIO_HAS_BOOST_SOURCE_LOCATION)
|
647
|
-
# define BOOST_ASIO_SOURCE_LOCATION_PARAM \
|
648
|
-
, const boost::source_location& loc
|
649
|
-
# define BOOST_ASIO_SOURCE_LOCATION_DEFAULTED_PARAM \
|
650
|
-
, const boost::source_location& loc = BOOST_CURRENT_LOCATION
|
651
|
-
# define BOOST_ASIO_SOURCE_LOCATION_ARG , loc
|
652
|
-
#else // if defined(BOOST_ASIO_HAS_BOOST_SOURCE_LOCATION)
|
653
|
-
# define BOOST_ASIO_SOURCE_LOCATION_PARAM
|
654
|
-
# define BOOST_ASIO_SOURCE_LOCATION_DEFAULTED_PARAM
|
655
|
-
# define BOOST_ASIO_SOURCE_LOCATION_ARG
|
656
|
-
#endif // if defined(BOOST_ASIO_HAS_BOOST_SOURCE_LOCATION)
|
657
|
-
|
658
|
-
// Standard library support for std::index_sequence.
|
659
|
-
#if !defined(BOOST_ASIO_HAS_STD_INDEX_SEQUENCE)
|
660
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_INDEX_SEQUENCE)
|
661
|
-
# if defined(__clang__)
|
662
|
-
# if (__cplusplus >= 201402)
|
663
|
-
# define BOOST_ASIO_HAS_STD_INDEX_SEQUENCE 1
|
664
|
-
# endif // (__cplusplus >= 201402)
|
665
|
-
# elif defined(__GNUC__)
|
666
|
-
# if (__GNUC__ >= 7)
|
667
|
-
# if (__cplusplus >= 201402)
|
668
|
-
# define BOOST_ASIO_HAS_STD_INDEX_SEQUENCE 1
|
669
|
-
# endif // (__cplusplus >= 201402)
|
670
|
-
# endif // (__GNUC__ >= 7)
|
671
|
-
# endif // defined(__GNUC__)
|
672
|
-
# if defined(BOOST_ASIO_MSVC)
|
673
|
-
# if (_MSC_VER >= 1910) && (_MSVC_LANG >= 201402)
|
674
|
-
# define BOOST_ASIO_HAS_STD_INDEX_SEQUENCE 1
|
675
|
-
# endif // (_MSC_VER >= 1910) && (_MSVC_LANG >= 201402)
|
676
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
677
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_INDEX_SEQUENCE)
|
678
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_INDEX_SEQUENCE)
|
679
|
-
|
680
|
-
// Windows App target. Windows but with a limited API.
|
681
|
-
#if !defined(BOOST_ASIO_WINDOWS_APP)
|
682
|
-
# if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0603)
|
683
|
-
# include <winapifamily.h>
|
684
|
-
# if (WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) \
|
685
|
-
|| WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_TV_TITLE)) \
|
686
|
-
&& !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
687
|
-
# define BOOST_ASIO_WINDOWS_APP 1
|
688
|
-
# endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
689
|
-
// && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
690
|
-
# endif // defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0603)
|
691
|
-
#endif // !defined(BOOST_ASIO_WINDOWS_APP)
|
692
|
-
|
693
|
-
// Legacy WinRT target. Windows App is preferred.
|
694
|
-
#if !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
695
|
-
# if !defined(BOOST_ASIO_WINDOWS_APP)
|
696
|
-
# if defined(__cplusplus_winrt)
|
697
|
-
# include <winapifamily.h>
|
698
|
-
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) \
|
699
|
-
&& !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
700
|
-
# define BOOST_ASIO_WINDOWS_RUNTIME 1
|
701
|
-
# endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
702
|
-
// && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
703
|
-
# endif // defined(__cplusplus_winrt)
|
704
|
-
# endif // !defined(BOOST_ASIO_WINDOWS_APP)
|
705
|
-
#endif // !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
706
|
-
|
707
|
-
// Windows target. Excludes WinRT but includes Windows App targets.
|
708
|
-
#if !defined(BOOST_ASIO_WINDOWS)
|
709
|
-
# if !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
710
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_WINDOWS)
|
711
|
-
# define BOOST_ASIO_WINDOWS 1
|
712
|
-
# elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
|
713
|
-
# define BOOST_ASIO_WINDOWS 1
|
714
|
-
# elif defined(BOOST_ASIO_WINDOWS_APP)
|
715
|
-
# define BOOST_ASIO_WINDOWS 1
|
716
|
-
# endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_WINDOWS)
|
717
|
-
# endif // !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
718
|
-
#endif // !defined(BOOST_ASIO_WINDOWS)
|
719
|
-
|
720
|
-
// Windows: target OS version.
|
721
|
-
#if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
722
|
-
# if !defined(_WIN32_WINNT) && !defined(_WIN32_WINDOWS)
|
723
|
-
# if defined(_MSC_VER) || (defined(__BORLANDC__) && !defined(__clang__))
|
724
|
-
# pragma message( \
|
725
|
-
"Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately. For example:\n"\
|
726
|
-
"- add -D_WIN32_WINNT=0x0601 to the compiler command line; or\n"\
|
727
|
-
"- add _WIN32_WINNT=0x0601 to your project's Preprocessor Definitions.\n"\
|
728
|
-
"Assuming _WIN32_WINNT=0x0601 (i.e. Windows 7 target).")
|
729
|
-
# else // defined(_MSC_VER) || (defined(__BORLANDC__) && !defined(__clang__))
|
730
|
-
# warning Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately.
|
731
|
-
# warning For example, add -D_WIN32_WINNT=0x0601 to the compiler command line.
|
732
|
-
# warning Assuming _WIN32_WINNT=0x0601 (i.e. Windows 7 target).
|
733
|
-
# endif // defined(_MSC_VER) || (defined(__BORLANDC__) && !defined(__clang__))
|
734
|
-
# define _WIN32_WINNT 0x0601
|
735
|
-
# endif // !defined(_WIN32_WINNT) && !defined(_WIN32_WINDOWS)
|
736
|
-
# if defined(_MSC_VER)
|
737
|
-
# if defined(_WIN32) && !defined(WIN32)
|
738
|
-
# if !defined(_WINSOCK2API_)
|
739
|
-
# define WIN32 // Needed for correct types in winsock2.h
|
740
|
-
# else // !defined(_WINSOCK2API_)
|
741
|
-
# error Please define the macro WIN32 in your compiler options
|
742
|
-
# endif // !defined(_WINSOCK2API_)
|
743
|
-
# endif // defined(_WIN32) && !defined(WIN32)
|
744
|
-
# endif // defined(_MSC_VER)
|
745
|
-
# if defined(__BORLANDC__)
|
746
|
-
# if defined(__WIN32__) && !defined(WIN32)
|
747
|
-
# if !defined(_WINSOCK2API_)
|
748
|
-
# define WIN32 // Needed for correct types in winsock2.h
|
749
|
-
# else // !defined(_WINSOCK2API_)
|
750
|
-
# error Please define the macro WIN32 in your compiler options
|
751
|
-
# endif // !defined(_WINSOCK2API_)
|
752
|
-
# endif // defined(__WIN32__) && !defined(WIN32)
|
753
|
-
# endif // defined(__BORLANDC__)
|
754
|
-
# if defined(__CYGWIN__)
|
755
|
-
# if !defined(__USE_W32_SOCKETS)
|
756
|
-
# error You must add -D__USE_W32_SOCKETS to your compiler options.
|
757
|
-
# endif // !defined(__USE_W32_SOCKETS)
|
758
|
-
# endif // defined(__CYGWIN__)
|
759
|
-
#endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
760
|
-
|
761
|
-
// Windows: minimise header inclusion.
|
762
|
-
#if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
763
|
-
# if !defined(BOOST_ASIO_NO_WIN32_LEAN_AND_MEAN)
|
764
|
-
# if !defined(WIN32_LEAN_AND_MEAN)
|
765
|
-
# define WIN32_LEAN_AND_MEAN
|
766
|
-
# endif // !defined(WIN32_LEAN_AND_MEAN)
|
767
|
-
# endif // !defined(BOOST_ASIO_NO_WIN32_LEAN_AND_MEAN)
|
768
|
-
#endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
769
|
-
|
770
|
-
// Windows: suppress definition of "min" and "max" macros.
|
771
|
-
#if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
772
|
-
# if !defined(BOOST_ASIO_NO_NOMINMAX)
|
773
|
-
# if !defined(NOMINMAX)
|
774
|
-
# define NOMINMAX 1
|
775
|
-
# endif // !defined(NOMINMAX)
|
776
|
-
# endif // !defined(BOOST_ASIO_NO_NOMINMAX)
|
777
|
-
#endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
778
|
-
|
779
|
-
// Windows: IO Completion Ports.
|
780
|
-
#if !defined(BOOST_ASIO_HAS_IOCP)
|
781
|
-
# if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
782
|
-
# if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0400)
|
783
|
-
# if !defined(UNDER_CE) && !defined(BOOST_ASIO_WINDOWS_APP)
|
784
|
-
# if !defined(BOOST_ASIO_DISABLE_IOCP)
|
785
|
-
# define BOOST_ASIO_HAS_IOCP 1
|
786
|
-
# endif // !defined(BOOST_ASIO_DISABLE_IOCP)
|
787
|
-
# endif // !defined(UNDER_CE) && !defined(BOOST_ASIO_WINDOWS_APP)
|
788
|
-
# endif // defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0400)
|
789
|
-
# endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
790
|
-
#endif // !defined(BOOST_ASIO_HAS_IOCP)
|
791
|
-
|
792
|
-
// On POSIX (and POSIX-like) platforms we need to include unistd.h in order to
|
793
|
-
// get access to the various platform feature macros, e.g. to be able to test
|
794
|
-
// for threads support.
|
795
|
-
#if !defined(BOOST_ASIO_HAS_UNISTD_H)
|
796
|
-
# if !defined(BOOST_ASIO_HAS_BOOST_CONFIG)
|
797
|
-
# if defined(unix) \
|
798
|
-
|| defined(__unix) \
|
799
|
-
|| defined(_XOPEN_SOURCE) \
|
800
|
-
|| defined(_POSIX_SOURCE) \
|
801
|
-
|| (defined(__MACH__) && defined(__APPLE__)) \
|
802
|
-
|| defined(__FreeBSD__) \
|
803
|
-
|| defined(__NetBSD__) \
|
804
|
-
|| defined(__OpenBSD__) \
|
805
|
-
|| defined(__linux__) \
|
806
|
-
|| defined(__HAIKU__)
|
807
|
-
# define BOOST_ASIO_HAS_UNISTD_H 1
|
808
|
-
# endif
|
809
|
-
# endif // !defined(BOOST_ASIO_HAS_BOOST_CONFIG)
|
810
|
-
#endif // !defined(BOOST_ASIO_HAS_UNISTD_H)
|
811
|
-
#if defined(BOOST_ASIO_HAS_UNISTD_H)
|
812
|
-
# include <unistd.h>
|
813
|
-
#endif // defined(BOOST_ASIO_HAS_UNISTD_H)
|
814
|
-
|
815
|
-
// Linux: epoll, eventfd, timerfd and io_uring.
|
816
|
-
#if defined(__linux__)
|
817
|
-
# include <linux/version.h>
|
818
|
-
# if !defined(BOOST_ASIO_HAS_EPOLL)
|
819
|
-
# if !defined(BOOST_ASIO_DISABLE_EPOLL)
|
820
|
-
# if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,45)
|
821
|
-
# define BOOST_ASIO_HAS_EPOLL 1
|
822
|
-
# endif // LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,45)
|
823
|
-
# endif // !defined(BOOST_ASIO_DISABLE_EPOLL)
|
824
|
-
# endif // !defined(BOOST_ASIO_HAS_EPOLL)
|
825
|
-
# if !defined(BOOST_ASIO_HAS_EVENTFD)
|
826
|
-
# if !defined(BOOST_ASIO_DISABLE_EVENTFD)
|
827
|
-
# if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
|
828
|
-
# define BOOST_ASIO_HAS_EVENTFD 1
|
829
|
-
# endif // LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
|
830
|
-
# endif // !defined(BOOST_ASIO_DISABLE_EVENTFD)
|
831
|
-
# endif // !defined(BOOST_ASIO_HAS_EVENTFD)
|
832
|
-
# if !defined(BOOST_ASIO_HAS_TIMERFD)
|
833
|
-
# if defined(BOOST_ASIO_HAS_EPOLL)
|
834
|
-
# if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8)
|
835
|
-
# define BOOST_ASIO_HAS_TIMERFD 1
|
836
|
-
# endif // (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8)
|
837
|
-
# endif // defined(BOOST_ASIO_HAS_EPOLL)
|
838
|
-
# endif // !defined(BOOST_ASIO_HAS_TIMERFD)
|
839
|
-
# if defined(BOOST_ASIO_HAS_IO_URING)
|
840
|
-
# if LINUX_VERSION_CODE < KERNEL_VERSION(5,10,0)
|
841
|
-
# error Linux kernel 5.10 or later is required to support io_uring
|
842
|
-
# endif // LINUX_VERSION_CODE < KERNEL_VERSION(5,10,0)
|
843
|
-
# endif // defined(BOOST_ASIO_HAS_IO_URING)
|
844
|
-
#endif // defined(__linux__)
|
845
|
-
|
846
|
-
// Linux: io_uring is used instead of epoll.
|
847
|
-
#if !defined(BOOST_ASIO_HAS_IO_URING_AS_DEFAULT)
|
848
|
-
# if !defined(BOOST_ASIO_HAS_EPOLL) && defined(BOOST_ASIO_HAS_IO_URING)
|
849
|
-
# define BOOST_ASIO_HAS_IO_URING_AS_DEFAULT 1
|
850
|
-
# endif // !defined(BOOST_ASIO_HAS_EPOLL) && defined(BOOST_ASIO_HAS_IO_URING)
|
851
|
-
#endif // !defined(BOOST_ASIO_HAS_IO_URING_AS_DEFAULT)
|
852
|
-
|
853
|
-
// Mac OS X, FreeBSD, NetBSD, OpenBSD: kqueue.
|
854
|
-
#if (defined(__MACH__) && defined(__APPLE__)) \
|
855
|
-
|| defined(__FreeBSD__) \
|
856
|
-
|| defined(__NetBSD__) \
|
857
|
-
|| defined(__OpenBSD__)
|
858
|
-
# if !defined(BOOST_ASIO_HAS_KQUEUE)
|
859
|
-
# if !defined(BOOST_ASIO_DISABLE_KQUEUE)
|
860
|
-
# define BOOST_ASIO_HAS_KQUEUE 1
|
861
|
-
# endif // !defined(BOOST_ASIO_DISABLE_KQUEUE)
|
862
|
-
# endif // !defined(BOOST_ASIO_HAS_KQUEUE)
|
863
|
-
#endif // (defined(__MACH__) && defined(__APPLE__))
|
864
|
-
// || defined(__FreeBSD__)
|
865
|
-
// || defined(__NetBSD__)
|
866
|
-
// || defined(__OpenBSD__)
|
867
|
-
|
868
|
-
// Solaris: /dev/poll.
|
869
|
-
#if defined(__sun)
|
870
|
-
# if !defined(BOOST_ASIO_HAS_DEV_POLL)
|
871
|
-
# if !defined(BOOST_ASIO_DISABLE_DEV_POLL)
|
872
|
-
# define BOOST_ASIO_HAS_DEV_POLL 1
|
873
|
-
# endif // !defined(BOOST_ASIO_DISABLE_DEV_POLL)
|
874
|
-
# endif // !defined(BOOST_ASIO_HAS_DEV_POLL)
|
875
|
-
#endif // defined(__sun)
|
876
|
-
|
877
|
-
// Serial ports.
|
878
|
-
#if !defined(BOOST_ASIO_HAS_SERIAL_PORT)
|
879
|
-
# if defined(BOOST_ASIO_HAS_IOCP) \
|
880
|
-
|| !defined(BOOST_ASIO_WINDOWS) \
|
881
|
-
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
882
|
-
&& !defined(__CYGWIN__)
|
883
|
-
# if !defined(__SYMBIAN32__)
|
884
|
-
# if !defined(BOOST_ASIO_DISABLE_SERIAL_PORT)
|
885
|
-
# define BOOST_ASIO_HAS_SERIAL_PORT 1
|
886
|
-
# endif // !defined(BOOST_ASIO_DISABLE_SERIAL_PORT)
|
887
|
-
# endif // !defined(__SYMBIAN32__)
|
888
|
-
# endif // defined(BOOST_ASIO_HAS_IOCP)
|
889
|
-
// || !defined(BOOST_ASIO_WINDOWS)
|
890
|
-
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
891
|
-
// && !defined(__CYGWIN__)
|
892
|
-
#endif // !defined(BOOST_ASIO_HAS_SERIAL_PORT)
|
893
|
-
|
894
|
-
// Windows: stream handles.
|
895
|
-
#if !defined(BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE)
|
896
|
-
# if !defined(BOOST_ASIO_DISABLE_WINDOWS_STREAM_HANDLE)
|
897
|
-
# if defined(BOOST_ASIO_HAS_IOCP)
|
898
|
-
# define BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE 1
|
899
|
-
# endif // defined(BOOST_ASIO_HAS_IOCP)
|
900
|
-
# endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_STREAM_HANDLE)
|
901
|
-
#endif // !defined(BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE)
|
902
|
-
|
903
|
-
// Windows: random access handles.
|
904
|
-
#if !defined(BOOST_ASIO_HAS_WINDOWS_RANDOM_ACCESS_HANDLE)
|
905
|
-
# if !defined(BOOST_ASIO_DISABLE_WINDOWS_RANDOM_ACCESS_HANDLE)
|
906
|
-
# if defined(BOOST_ASIO_HAS_IOCP)
|
907
|
-
# define BOOST_ASIO_HAS_WINDOWS_RANDOM_ACCESS_HANDLE 1
|
908
|
-
# endif // defined(BOOST_ASIO_HAS_IOCP)
|
909
|
-
# endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_RANDOM_ACCESS_HANDLE)
|
910
|
-
#endif // !defined(BOOST_ASIO_HAS_WINDOWS_RANDOM_ACCESS_HANDLE)
|
911
|
-
|
912
|
-
// Windows: object handles.
|
913
|
-
#if !defined(BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE)
|
914
|
-
# if !defined(BOOST_ASIO_DISABLE_WINDOWS_OBJECT_HANDLE)
|
915
|
-
# if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
916
|
-
# if !defined(UNDER_CE) && !defined(BOOST_ASIO_WINDOWS_APP)
|
917
|
-
# define BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE 1
|
918
|
-
# endif // !defined(UNDER_CE) && !defined(BOOST_ASIO_WINDOWS_APP)
|
919
|
-
# endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
920
|
-
# endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_OBJECT_HANDLE)
|
921
|
-
#endif // !defined(BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE)
|
922
|
-
|
923
|
-
// Windows: OVERLAPPED wrapper.
|
924
|
-
#if !defined(BOOST_ASIO_HAS_WINDOWS_OVERLAPPED_PTR)
|
925
|
-
# if !defined(BOOST_ASIO_DISABLE_WINDOWS_OVERLAPPED_PTR)
|
926
|
-
# if defined(BOOST_ASIO_HAS_IOCP)
|
927
|
-
# define BOOST_ASIO_HAS_WINDOWS_OVERLAPPED_PTR 1
|
928
|
-
# endif // defined(BOOST_ASIO_HAS_IOCP)
|
929
|
-
# endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_OVERLAPPED_PTR)
|
930
|
-
#endif // !defined(BOOST_ASIO_HAS_WINDOWS_OVERLAPPED_PTR)
|
931
|
-
|
932
|
-
// POSIX: stream-oriented file descriptors.
|
933
|
-
#if !defined(BOOST_ASIO_HAS_POSIX_STREAM_DESCRIPTOR)
|
934
|
-
# if !defined(BOOST_ASIO_DISABLE_POSIX_STREAM_DESCRIPTOR)
|
935
|
-
# if !defined(BOOST_ASIO_WINDOWS) \
|
936
|
-
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
937
|
-
&& !defined(__CYGWIN__)
|
938
|
-
# define BOOST_ASIO_HAS_POSIX_STREAM_DESCRIPTOR 1
|
939
|
-
# endif // !defined(BOOST_ASIO_WINDOWS)
|
940
|
-
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
941
|
-
// && !defined(__CYGWIN__)
|
942
|
-
# endif // !defined(BOOST_ASIO_DISABLE_POSIX_STREAM_DESCRIPTOR)
|
943
|
-
#endif // !defined(BOOST_ASIO_HAS_POSIX_STREAM_DESCRIPTOR)
|
944
|
-
|
945
|
-
// UNIX domain sockets.
|
946
|
-
#if !defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)
|
947
|
-
# if !defined(BOOST_ASIO_DISABLE_LOCAL_SOCKETS)
|
948
|
-
# if !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
949
|
-
# define BOOST_ASIO_HAS_LOCAL_SOCKETS 1
|
950
|
-
# endif // !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
951
|
-
# endif // !defined(BOOST_ASIO_DISABLE_LOCAL_SOCKETS)
|
952
|
-
#endif // !defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)
|
953
|
-
|
954
|
-
// Files.
|
955
|
-
#if !defined(BOOST_ASIO_HAS_FILE)
|
956
|
-
# if !defined(BOOST_ASIO_DISABLE_FILE)
|
957
|
-
# if defined(BOOST_ASIO_HAS_WINDOWS_RANDOM_ACCESS_HANDLE)
|
958
|
-
# define BOOST_ASIO_HAS_FILE 1
|
959
|
-
# elif defined(BOOST_ASIO_HAS_IO_URING)
|
960
|
-
# define BOOST_ASIO_HAS_FILE 1
|
961
|
-
# endif // defined(BOOST_ASIO_HAS_IO_URING)
|
962
|
-
# endif // !defined(BOOST_ASIO_DISABLE_FILE)
|
963
|
-
#endif // !defined(BOOST_ASIO_HAS_FILE)
|
964
|
-
|
965
|
-
// Pipes.
|
966
|
-
#if !defined(BOOST_ASIO_HAS_PIPE)
|
967
|
-
# if defined(BOOST_ASIO_HAS_IOCP) \
|
968
|
-
|| !defined(BOOST_ASIO_WINDOWS) \
|
969
|
-
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
970
|
-
&& !defined(__CYGWIN__)
|
971
|
-
# if !defined(__SYMBIAN32__)
|
972
|
-
# if !defined(BOOST_ASIO_DISABLE_PIPE)
|
973
|
-
# define BOOST_ASIO_HAS_PIPE 1
|
974
|
-
# endif // !defined(BOOST_ASIO_DISABLE_PIPE)
|
975
|
-
# endif // !defined(__SYMBIAN32__)
|
976
|
-
# endif // defined(BOOST_ASIO_HAS_IOCP)
|
977
|
-
// || !defined(BOOST_ASIO_WINDOWS)
|
978
|
-
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
979
|
-
// && !defined(__CYGWIN__)
|
980
|
-
#endif // !defined(BOOST_ASIO_HAS_PIPE)
|
981
|
-
|
982
|
-
// Can use sigaction() instead of signal().
|
983
|
-
#if !defined(BOOST_ASIO_HAS_SIGACTION)
|
984
|
-
# if !defined(BOOST_ASIO_DISABLE_SIGACTION)
|
985
|
-
# if !defined(BOOST_ASIO_WINDOWS) \
|
986
|
-
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
987
|
-
&& !defined(__CYGWIN__)
|
988
|
-
# define BOOST_ASIO_HAS_SIGACTION 1
|
989
|
-
# endif // !defined(BOOST_ASIO_WINDOWS)
|
990
|
-
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
991
|
-
// && !defined(__CYGWIN__)
|
992
|
-
# endif // !defined(BOOST_ASIO_DISABLE_SIGACTION)
|
993
|
-
#endif // !defined(BOOST_ASIO_HAS_SIGACTION)
|
994
|
-
|
995
|
-
// Can use signal().
|
996
|
-
#if !defined(BOOST_ASIO_HAS_SIGNAL)
|
997
|
-
# if !defined(BOOST_ASIO_DISABLE_SIGNAL)
|
998
|
-
# if !defined(UNDER_CE)
|
999
|
-
# define BOOST_ASIO_HAS_SIGNAL 1
|
1000
|
-
# endif // !defined(UNDER_CE)
|
1001
|
-
# endif // !defined(BOOST_ASIO_DISABLE_SIGNAL)
|
1002
|
-
#endif // !defined(BOOST_ASIO_HAS_SIGNAL)
|
1003
|
-
|
1004
|
-
// Can use getaddrinfo() and getnameinfo().
|
1005
|
-
#if !defined(BOOST_ASIO_HAS_GETADDRINFO)
|
1006
|
-
# if !defined(BOOST_ASIO_DISABLE_GETADDRINFO)
|
1007
|
-
# if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
1008
|
-
# if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0501)
|
1009
|
-
# define BOOST_ASIO_HAS_GETADDRINFO 1
|
1010
|
-
# elif defined(UNDER_CE)
|
1011
|
-
# define BOOST_ASIO_HAS_GETADDRINFO 1
|
1012
|
-
# endif // defined(UNDER_CE)
|
1013
|
-
# elif defined(__MACH__) && defined(__APPLE__)
|
1014
|
-
# if defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
|
1015
|
-
# if (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1050)
|
1016
|
-
# define BOOST_ASIO_HAS_GETADDRINFO 1
|
1017
|
-
# endif // (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1050)
|
1018
|
-
# else // defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
|
1019
|
-
# define BOOST_ASIO_HAS_GETADDRINFO 1
|
1020
|
-
# endif // defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
|
1021
|
-
# else // defined(__MACH__) && defined(__APPLE__)
|
1022
|
-
# define BOOST_ASIO_HAS_GETADDRINFO 1
|
1023
|
-
# endif // defined(__MACH__) && defined(__APPLE__)
|
1024
|
-
# endif // !defined(BOOST_ASIO_DISABLE_GETADDRINFO)
|
1025
|
-
#endif // !defined(BOOST_ASIO_HAS_GETADDRINFO)
|
1026
|
-
|
1027
|
-
// Whether standard iostreams are disabled.
|
1028
|
-
#if !defined(BOOST_ASIO_NO_IOSTREAM)
|
1029
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_NO_IOSTREAM)
|
1030
|
-
# define BOOST_ASIO_NO_IOSTREAM 1
|
1031
|
-
# endif // !defined(BOOST_NO_IOSTREAM)
|
1032
|
-
#endif // !defined(BOOST_ASIO_NO_IOSTREAM)
|
1033
|
-
|
1034
|
-
// Whether exception handling is disabled.
|
1035
|
-
#if !defined(BOOST_ASIO_NO_EXCEPTIONS)
|
1036
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_NO_EXCEPTIONS)
|
1037
|
-
# define BOOST_ASIO_NO_EXCEPTIONS 1
|
1038
|
-
# endif // !defined(BOOST_NO_EXCEPTIONS)
|
1039
|
-
#endif // !defined(BOOST_ASIO_NO_EXCEPTIONS)
|
1040
|
-
|
1041
|
-
// Whether the typeid operator is supported.
|
1042
|
-
#if !defined(BOOST_ASIO_NO_TYPEID)
|
1043
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_NO_TYPEID)
|
1044
|
-
# define BOOST_ASIO_NO_TYPEID 1
|
1045
|
-
# endif // !defined(BOOST_NO_TYPEID)
|
1046
|
-
#endif // !defined(BOOST_ASIO_NO_TYPEID)
|
1047
|
-
|
1048
|
-
// Threads.
|
1049
|
-
#if !defined(BOOST_ASIO_HAS_THREADS)
|
1050
|
-
# if !defined(BOOST_ASIO_DISABLE_THREADS)
|
1051
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_HAS_THREADS)
|
1052
|
-
# define BOOST_ASIO_HAS_THREADS 1
|
1053
|
-
# elif defined(__GNUC__) && !defined(__MINGW32__) \
|
1054
|
-
&& !defined(linux) && !defined(__linux) && !defined(__linux__)
|
1055
|
-
# define BOOST_ASIO_HAS_THREADS 1
|
1056
|
-
# elif defined(_MT) || defined(__MT__)
|
1057
|
-
# define BOOST_ASIO_HAS_THREADS 1
|
1058
|
-
# elif defined(_REENTRANT)
|
1059
|
-
# define BOOST_ASIO_HAS_THREADS 1
|
1060
|
-
# elif defined(__APPLE__)
|
1061
|
-
# define BOOST_ASIO_HAS_THREADS 1
|
1062
|
-
# elif defined(__HAIKU__)
|
1063
|
-
# define BOOST_ASIO_HAS_THREADS 1
|
1064
|
-
# elif defined(_POSIX_THREADS) && (_POSIX_THREADS + 0 >= 0)
|
1065
|
-
# define BOOST_ASIO_HAS_THREADS 1
|
1066
|
-
# elif defined(_PTHREADS)
|
1067
|
-
# define BOOST_ASIO_HAS_THREADS 1
|
1068
|
-
# endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_HAS_THREADS)
|
1069
|
-
# endif // !defined(BOOST_ASIO_DISABLE_THREADS)
|
1070
|
-
#endif // !defined(BOOST_ASIO_HAS_THREADS)
|
1071
|
-
|
1072
|
-
// POSIX threads.
|
1073
|
-
#if !defined(BOOST_ASIO_HAS_PTHREADS)
|
1074
|
-
# if defined(BOOST_ASIO_HAS_THREADS)
|
1075
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_HAS_PTHREADS)
|
1076
|
-
# define BOOST_ASIO_HAS_PTHREADS 1
|
1077
|
-
# elif defined(_POSIX_THREADS) && (_POSIX_THREADS + 0 >= 0)
|
1078
|
-
# define BOOST_ASIO_HAS_PTHREADS 1
|
1079
|
-
# elif defined(__HAIKU__)
|
1080
|
-
# define BOOST_ASIO_HAS_PTHREADS 1
|
1081
|
-
# endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_HAS_PTHREADS)
|
1082
|
-
# endif // defined(BOOST_ASIO_HAS_THREADS)
|
1083
|
-
#endif // !defined(BOOST_ASIO_HAS_PTHREADS)
|
1084
|
-
|
1085
|
-
// Helper to prevent macro expansion.
|
1086
|
-
#define BOOST_ASIO_PREVENT_MACRO_SUBSTITUTION
|
1087
|
-
|
1088
|
-
// Helper to define in-class constants.
|
1089
|
-
#if !defined(BOOST_ASIO_STATIC_CONSTANT)
|
1090
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_STATIC_CONSTANT)
|
1091
|
-
# define BOOST_ASIO_STATIC_CONSTANT(type, assignment) \
|
1092
|
-
BOOST_STATIC_CONSTANT(type, assignment)
|
1093
|
-
# else // !defined(BOOST_ASIO_DISABLE_BOOST_STATIC_CONSTANT)
|
1094
|
-
# define BOOST_ASIO_STATIC_CONSTANT(type, assignment) \
|
1095
|
-
static const type assignment
|
1096
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_STATIC_CONSTANT)
|
1097
|
-
#endif // !defined(BOOST_ASIO_STATIC_CONSTANT)
|
1098
|
-
|
1099
|
-
// Boost align library.
|
1100
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_ALIGN)
|
1101
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_ALIGN)
|
1102
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 105600)
|
1103
|
-
# define BOOST_ASIO_HAS_BOOST_ALIGN 1
|
1104
|
-
# endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 105600)
|
1105
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_ALIGN)
|
1106
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_ALIGN)
|
1107
|
-
|
1108
|
-
// Boost array library.
|
1109
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_ARRAY)
|
1110
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_ARRAY)
|
1111
|
-
# define BOOST_ASIO_HAS_BOOST_ARRAY 1
|
1112
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_ARRAY)
|
1113
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_ARRAY)
|
1114
|
-
|
1115
|
-
// Boost assert macro.
|
1116
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_ASSERT)
|
1117
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_ASSERT)
|
1118
|
-
# define BOOST_ASIO_HAS_BOOST_ASSERT 1
|
1119
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_ASSERT)
|
1120
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_ASSERT)
|
1121
|
-
|
1122
|
-
// Boost limits header.
|
1123
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_LIMITS)
|
1124
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_LIMITS)
|
1125
|
-
# define BOOST_ASIO_HAS_BOOST_LIMITS 1
|
1126
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_LIMITS)
|
1127
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_LIMITS)
|
1128
|
-
|
1129
|
-
// Boost throw_exception function.
|
1130
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_THROW_EXCEPTION)
|
1131
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_THROW_EXCEPTION)
|
1132
|
-
# define BOOST_ASIO_HAS_BOOST_THROW_EXCEPTION 1
|
1133
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_THROW_EXCEPTION)
|
1134
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_THROW_EXCEPTION)
|
1135
|
-
|
1136
|
-
// Boost regex library.
|
1137
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
1138
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_REGEX)
|
1139
|
-
# define BOOST_ASIO_HAS_BOOST_REGEX 1
|
1140
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_REGEX)
|
1141
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
1142
|
-
|
1143
|
-
// Boost bind function.
|
1144
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_BIND)
|
1145
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_BIND)
|
1146
|
-
# define BOOST_ASIO_HAS_BOOST_BIND 1
|
1147
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_BIND)
|
1148
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_BIND)
|
1149
|
-
|
1150
|
-
// Boost's BOOST_WORKAROUND macro.
|
1151
|
-
#if !defined(BOOST_ASIO_HAS_BOOST_WORKAROUND)
|
1152
|
-
# if !defined(BOOST_ASIO_DISABLE_BOOST_WORKAROUND)
|
1153
|
-
# define BOOST_ASIO_HAS_BOOST_WORKAROUND 1
|
1154
|
-
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_WORKAROUND)
|
1155
|
-
#endif // !defined(BOOST_ASIO_HAS_BOOST_WORKAROUND)
|
1156
|
-
|
1157
|
-
// Microsoft Visual C++'s secure C runtime library.
|
1158
|
-
#if !defined(BOOST_ASIO_HAS_SECURE_RTL)
|
1159
|
-
# if !defined(BOOST_ASIO_DISABLE_SECURE_RTL)
|
1160
|
-
# if defined(BOOST_ASIO_MSVC) \
|
1161
|
-
&& (BOOST_ASIO_MSVC >= 1400) \
|
1162
|
-
&& !defined(UNDER_CE)
|
1163
|
-
# define BOOST_ASIO_HAS_SECURE_RTL 1
|
1164
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1165
|
-
// && (BOOST_ASIO_MSVC >= 1400)
|
1166
|
-
// && !defined(UNDER_CE)
|
1167
|
-
# endif // !defined(BOOST_ASIO_DISABLE_SECURE_RTL)
|
1168
|
-
#endif // !defined(BOOST_ASIO_HAS_SECURE_RTL)
|
1169
|
-
|
1170
|
-
// Handler hooking. Disabled for ancient Borland C++ and gcc compilers.
|
1171
|
-
#if !defined(BOOST_ASIO_HAS_HANDLER_HOOKS)
|
1172
|
-
# if !defined(BOOST_ASIO_DISABLE_HANDLER_HOOKS)
|
1173
|
-
# if defined(__GNUC__)
|
1174
|
-
# if (__GNUC__ >= 3)
|
1175
|
-
# define BOOST_ASIO_HAS_HANDLER_HOOKS 1
|
1176
|
-
# endif // (__GNUC__ >= 3)
|
1177
|
-
# elif !defined(__BORLANDC__) || defined(__clang__)
|
1178
|
-
# define BOOST_ASIO_HAS_HANDLER_HOOKS 1
|
1179
|
-
# endif // !defined(__BORLANDC__) || defined(__clang__)
|
1180
|
-
# endif // !defined(BOOST_ASIO_DISABLE_HANDLER_HOOKS)
|
1181
|
-
#endif // !defined(BOOST_ASIO_HAS_HANDLER_HOOKS)
|
1182
|
-
|
1183
|
-
// Support for the __thread keyword extension, or equivalent.
|
1184
|
-
#if !defined(BOOST_ASIO_DISABLE_THREAD_KEYWORD_EXTENSION)
|
1185
|
-
# if defined(__linux__)
|
1186
|
-
# if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
1187
|
-
# if ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)
|
1188
|
-
# if !defined(__INTEL_COMPILER) && !defined(__ICL) \
|
1189
|
-
&& !(defined(__clang__) && defined(__ANDROID__))
|
1190
|
-
# define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
|
1191
|
-
# define BOOST_ASIO_THREAD_KEYWORD __thread
|
1192
|
-
# elif defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1100)
|
1193
|
-
# define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
|
1194
|
-
# endif // defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1100)
|
1195
|
-
// && !(defined(__clang__) && defined(__ANDROID__))
|
1196
|
-
# endif // ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)
|
1197
|
-
# endif // defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
1198
|
-
# endif // defined(__linux__)
|
1199
|
-
# if defined(BOOST_ASIO_MSVC) && defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
1200
|
-
# if (_MSC_VER >= 1700)
|
1201
|
-
# define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
|
1202
|
-
# define BOOST_ASIO_THREAD_KEYWORD __declspec(thread)
|
1203
|
-
# endif // (_MSC_VER >= 1700)
|
1204
|
-
# endif // defined(BOOST_ASIO_MSVC) && defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
1205
|
-
# if defined(__APPLE__)
|
1206
|
-
# if defined(__clang__)
|
1207
|
-
# if defined(__apple_build_version__)
|
1208
|
-
# define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
|
1209
|
-
# define BOOST_ASIO_THREAD_KEYWORD __thread
|
1210
|
-
# endif // defined(__apple_build_version__)
|
1211
|
-
# endif // defined(__clang__)
|
1212
|
-
# endif // defined(__APPLE__)
|
1213
|
-
# if !defined(BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION)
|
1214
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG)
|
1215
|
-
# if !defined(BOOST_NO_CXX11_THREAD_LOCAL)
|
1216
|
-
# define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
|
1217
|
-
# define BOOST_ASIO_THREAD_KEYWORD thread_local
|
1218
|
-
# endif // !defined(BOOST_NO_CXX11_THREAD_LOCAL)
|
1219
|
-
# endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG)
|
1220
|
-
# endif // !defined(BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION)
|
1221
|
-
#endif // !defined(BOOST_ASIO_DISABLE_THREAD_KEYWORD_EXTENSION)
|
1222
|
-
#if !defined(BOOST_ASIO_THREAD_KEYWORD)
|
1223
|
-
# define BOOST_ASIO_THREAD_KEYWORD __thread
|
1224
|
-
#endif // !defined(BOOST_ASIO_THREAD_KEYWORD)
|
1225
|
-
|
1226
|
-
// Support for POSIX ssize_t typedef.
|
1227
|
-
#if !defined(BOOST_ASIO_DISABLE_SSIZE_T)
|
1228
|
-
# if defined(__linux__) \
|
1229
|
-
|| (defined(__MACH__) && defined(__APPLE__))
|
1230
|
-
# define BOOST_ASIO_HAS_SSIZE_T 1
|
1231
|
-
# endif // defined(__linux__)
|
1232
|
-
// || (defined(__MACH__) && defined(__APPLE__))
|
1233
|
-
#endif // !defined(BOOST_ASIO_DISABLE_SSIZE_T)
|
1234
|
-
|
1235
|
-
// Helper macros to manage transition away from error_code return values.
|
1236
|
-
#if defined(BOOST_ASIO_NO_DEPRECATED)
|
1237
|
-
# define BOOST_ASIO_SYNC_OP_VOID void
|
1238
|
-
# define BOOST_ASIO_SYNC_OP_VOID_RETURN(e) return
|
1239
|
-
#else // defined(BOOST_ASIO_NO_DEPRECATED)
|
1240
|
-
# define BOOST_ASIO_SYNC_OP_VOID boost::system::error_code
|
1241
|
-
# define BOOST_ASIO_SYNC_OP_VOID_RETURN(e) return e
|
1242
|
-
#endif // defined(BOOST_ASIO_NO_DEPRECATED)
|
1243
|
-
|
1244
|
-
// Newer gcc, clang need special treatment to suppress unused typedef warnings.
|
1245
|
-
#if defined(__clang__)
|
1246
|
-
# if defined(__apple_build_version__)
|
1247
|
-
# if (__clang_major__ >= 7)
|
1248
|
-
# define BOOST_ASIO_UNUSED_TYPEDEF __attribute__((__unused__))
|
1249
|
-
# endif // (__clang_major__ >= 7)
|
1250
|
-
# elif ((__clang_major__ == 3) && (__clang_minor__ >= 6)) \
|
1251
|
-
|| (__clang_major__ > 3)
|
1252
|
-
# define BOOST_ASIO_UNUSED_TYPEDEF __attribute__((__unused__))
|
1253
|
-
# endif // ((__clang_major__ == 3) && (__clang_minor__ >= 6))
|
1254
|
-
// || (__clang_major__ > 3)
|
1255
|
-
#elif defined(__GNUC__)
|
1256
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
1257
|
-
# define BOOST_ASIO_UNUSED_TYPEDEF __attribute__((__unused__))
|
1258
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
1259
|
-
#endif // defined(__GNUC__)
|
1260
|
-
#if !defined(BOOST_ASIO_UNUSED_TYPEDEF)
|
1261
|
-
# define BOOST_ASIO_UNUSED_TYPEDEF
|
1262
|
-
#endif // !defined(BOOST_ASIO_UNUSED_TYPEDEF)
|
1263
|
-
|
1264
|
-
// Some versions of gcc generate spurious warnings about unused variables.
|
1265
|
-
#if defined(__GNUC__)
|
1266
|
-
# if (__GNUC__ >= 4)
|
1267
|
-
# define BOOST_ASIO_UNUSED_VARIABLE __attribute__((__unused__))
|
1268
|
-
# endif // (__GNUC__ >= 4)
|
1269
|
-
#endif // defined(__GNUC__)
|
1270
|
-
#if !defined(BOOST_ASIO_UNUSED_VARIABLE)
|
1271
|
-
# define BOOST_ASIO_UNUSED_VARIABLE
|
1272
|
-
#endif // !defined(BOOST_ASIO_UNUSED_VARIABLE)
|
1273
|
-
|
1274
|
-
// Helper macro to tell the optimiser what may be assumed to be true.
|
1275
|
-
#if defined(BOOST_ASIO_MSVC)
|
1276
|
-
# define BOOST_ASIO_ASSUME(expr) __assume(expr)
|
1277
|
-
#elif defined(__clang__)
|
1278
|
-
# if __has_builtin(__builtin_assume)
|
1279
|
-
# define BOOST_ASIO_ASSUME(expr) __builtin_assume(expr)
|
1280
|
-
# endif // __has_builtin(__builtin_assume)
|
1281
|
-
#elif defined(__GNUC__)
|
1282
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
|
1283
|
-
# define BOOST_ASIO_ASSUME(expr) if (expr) {} else { __builtin_unreachable(); }
|
1284
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
|
1285
|
-
#endif // defined(__GNUC__)
|
1286
|
-
#if !defined(BOOST_ASIO_ASSUME)
|
1287
|
-
# define BOOST_ASIO_ASSUME(expr) (void)0
|
1288
|
-
#endif // !defined(BOOST_ASIO_ASSUME)
|
1289
|
-
|
1290
|
-
// Support the co_await keyword on compilers known to allow it.
|
1291
|
-
#if !defined(BOOST_ASIO_HAS_CO_AWAIT)
|
1292
|
-
# if !defined(BOOST_ASIO_DISABLE_CO_AWAIT)
|
1293
|
-
# if (__cplusplus >= 202002) \
|
1294
|
-
&& (__cpp_impl_coroutine >= 201902) && (__cpp_lib_coroutine >= 201902)
|
1295
|
-
# define BOOST_ASIO_HAS_CO_AWAIT 1
|
1296
|
-
# elif defined(BOOST_ASIO_MSVC)
|
1297
|
-
# if (_MSC_VER >= 1928) && (_MSVC_LANG >= 201705) && !defined(__clang__)
|
1298
|
-
# define BOOST_ASIO_HAS_CO_AWAIT 1
|
1299
|
-
# elif (_MSC_FULL_VER >= 190023506)
|
1300
|
-
# if defined(_RESUMABLE_FUNCTIONS_SUPPORTED)
|
1301
|
-
# define BOOST_ASIO_HAS_CO_AWAIT 1
|
1302
|
-
# endif // defined(_RESUMABLE_FUNCTIONS_SUPPORTED)
|
1303
|
-
# endif // (_MSC_FULL_VER >= 190023506)
|
1304
|
-
# elif defined(__clang__)
|
1305
|
-
# if (__clang_major__ >= 14)
|
1306
|
-
# if (__cplusplus >= 202002) && (__cpp_impl_coroutine >= 201902)
|
1307
|
-
# if __has_include(<coroutine>)
|
1308
|
-
# define BOOST_ASIO_HAS_CO_AWAIT 1
|
1309
|
-
# endif // __has_include(<coroutine>)
|
1310
|
-
# elif (__cplusplus >= 201703) && (__cpp_coroutines >= 201703)
|
1311
|
-
# if __has_include(<experimental/coroutine>)
|
1312
|
-
# define BOOST_ASIO_HAS_CO_AWAIT 1
|
1313
|
-
# endif // __has_include(<experimental/coroutine>)
|
1314
|
-
# endif // (__cplusplus >= 201703) && (__cpp_coroutines >= 201703)
|
1315
|
-
# else // (__clang_major__ >= 14)
|
1316
|
-
# if (__cplusplus >= 201703) && (__cpp_coroutines >= 201703)
|
1317
|
-
# if __has_include(<experimental/coroutine>)
|
1318
|
-
# define BOOST_ASIO_HAS_CO_AWAIT 1
|
1319
|
-
# endif // __has_include(<experimental/coroutine>)
|
1320
|
-
# endif // (__cplusplus >= 201703) && (__cpp_coroutines >= 201703)
|
1321
|
-
# endif // (__clang_major__ >= 14)
|
1322
|
-
# elif defined(__GNUC__)
|
1323
|
-
# if (__cplusplus >= 201709) && (__cpp_impl_coroutine >= 201902)
|
1324
|
-
# if __has_include(<coroutine>)
|
1325
|
-
# define BOOST_ASIO_HAS_CO_AWAIT 1
|
1326
|
-
# endif // __has_include(<coroutine>)
|
1327
|
-
# endif // (__cplusplus >= 201709) && (__cpp_impl_coroutine >= 201902)
|
1328
|
-
# endif // defined(__GNUC__)
|
1329
|
-
# endif // !defined(BOOST_ASIO_DISABLE_CO_AWAIT)
|
1330
|
-
#endif // !defined(BOOST_ASIO_HAS_CO_AWAIT)
|
1331
|
-
|
1332
|
-
// Standard library support for coroutines.
|
1333
|
-
#if !defined(BOOST_ASIO_HAS_STD_COROUTINE)
|
1334
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_COROUTINE)
|
1335
|
-
# if defined(BOOST_ASIO_MSVC)
|
1336
|
-
# if (_MSC_VER >= 1928) && (_MSVC_LANG >= 201705)
|
1337
|
-
# define BOOST_ASIO_HAS_STD_COROUTINE 1
|
1338
|
-
# endif // (_MSC_VER >= 1928) && (_MSVC_LANG >= 201705)
|
1339
|
-
# elif defined(__clang__)
|
1340
|
-
# if (__clang_major__ >= 14)
|
1341
|
-
# if (__cplusplus >= 202002) && (__cpp_impl_coroutine >= 201902)
|
1342
|
-
# if __has_include(<coroutine>)
|
1343
|
-
# define BOOST_ASIO_HAS_STD_COROUTINE 1
|
1344
|
-
# endif // __has_include(<coroutine>)
|
1345
|
-
# endif // (__cplusplus >= 202002) && (__cpp_impl_coroutine >= 201902)
|
1346
|
-
# endif // (__clang_major__ >= 14)
|
1347
|
-
# elif defined(__GNUC__)
|
1348
|
-
# if (__cplusplus >= 201709) && (__cpp_impl_coroutine >= 201902)
|
1349
|
-
# if __has_include(<coroutine>)
|
1350
|
-
# define BOOST_ASIO_HAS_STD_COROUTINE 1
|
1351
|
-
# endif // __has_include(<coroutine>)
|
1352
|
-
# endif // (__cplusplus >= 201709) && (__cpp_impl_coroutine >= 201902)
|
1353
|
-
# endif // defined(__GNUC__)
|
1354
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_COROUTINE)
|
1355
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_COROUTINE)
|
1356
|
-
|
1357
|
-
// Compiler support for the the [[nodiscard]] attribute.
|
1358
|
-
#if !defined(BOOST_ASIO_NODISCARD)
|
1359
|
-
# if defined(__has_cpp_attribute)
|
1360
|
-
# if __has_cpp_attribute(nodiscard)
|
1361
|
-
# if (__cplusplus >= 201703)
|
1362
|
-
# define BOOST_ASIO_NODISCARD [[nodiscard]]
|
1363
|
-
# endif // (__cplusplus >= 201703)
|
1364
|
-
# endif // __has_cpp_attribute(nodiscard)
|
1365
|
-
# endif // defined(__has_cpp_attribute)
|
1366
|
-
#endif // !defined(BOOST_ASIO_NODISCARD)
|
1367
|
-
#if !defined(BOOST_ASIO_NODISCARD)
|
1368
|
-
# define BOOST_ASIO_NODISCARD
|
1369
|
-
#endif // !defined(BOOST_ASIO_NODISCARD)
|
1370
|
-
|
1371
|
-
// Kernel support for MSG_NOSIGNAL.
|
1372
|
-
#if !defined(BOOST_ASIO_HAS_MSG_NOSIGNAL)
|
1373
|
-
# if defined(__linux__)
|
1374
|
-
# define BOOST_ASIO_HAS_MSG_NOSIGNAL 1
|
1375
|
-
# elif defined(_POSIX_VERSION)
|
1376
|
-
# if (_POSIX_VERSION >= 200809L)
|
1377
|
-
# define BOOST_ASIO_HAS_MSG_NOSIGNAL 1
|
1378
|
-
# endif // _POSIX_VERSION >= 200809L
|
1379
|
-
# endif // defined(_POSIX_VERSION)
|
1380
|
-
#endif // !defined(BOOST_ASIO_HAS_MSG_NOSIGNAL)
|
1381
|
-
|
1382
|
-
// Standard library support for std::to_address.
|
1383
|
-
#if !defined(BOOST_ASIO_HAS_STD_TO_ADDRESS)
|
1384
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_TO_ADDRESS)
|
1385
|
-
# if defined(__clang__)
|
1386
|
-
# if (__cplusplus >= 202002)
|
1387
|
-
# define BOOST_ASIO_HAS_STD_TO_ADDRESS 1
|
1388
|
-
# endif // (__cplusplus >= 202002)
|
1389
|
-
# elif defined(__GNUC__)
|
1390
|
-
# if (__GNUC__ >= 8)
|
1391
|
-
# if (__cplusplus >= 202002)
|
1392
|
-
# define BOOST_ASIO_HAS_STD_TO_ADDRESS 1
|
1393
|
-
# endif // (__cplusplus >= 202002)
|
1394
|
-
# endif // (__GNUC__ >= 8)
|
1395
|
-
# endif // defined(__GNUC__)
|
1396
|
-
# if defined(BOOST_ASIO_MSVC)
|
1397
|
-
# if (_MSC_VER >= 1922) && (_MSVC_LANG >= 202002)
|
1398
|
-
# define BOOST_ASIO_HAS_STD_TO_ADDRESS 1
|
1399
|
-
# endif // (_MSC_VER >= 1922) && (_MSVC_LANG >= 202002)
|
1400
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1401
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_TO_ADDRESS)
|
1402
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_TO_ADDRESS)
|
1403
|
-
|
1404
|
-
// Standard library support for snprintf.
|
1405
|
-
#if !defined(BOOST_ASIO_HAS_SNPRINTF)
|
1406
|
-
# if !defined(BOOST_ASIO_DISABLE_SNPRINTF)
|
1407
|
-
# if defined(__APPLE__)
|
1408
|
-
# define BOOST_ASIO_HAS_SNPRINTF 1
|
1409
|
-
# endif // defined(__APPLE__)
|
1410
|
-
# endif // !defined(BOOST_ASIO_DISABLE_SNPRINTF)
|
1411
|
-
#endif // !defined(BOOST_ASIO_HAS_SNPRINTF)
|
1412
|
-
|
1413
|
-
#endif // BOOST_ASIO_DETAIL_CONFIG_HPP
|