passenger 5.1.12 → 5.2.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG +18 -1
- data/Rakefile +4 -1
- data/build/agent.rb +2 -2
- data/build/apache2.rb +17 -10
- data/build/basics.rb +18 -4
- data/build/common_library.rb +7 -3
- data/build/cxx_tests.rb +2 -7
- data/build/misc.rb +3 -1
- data/build/nginx.rb +11 -5
- data/build/oxt_tests.rb +0 -3
- data/build/packaging.rb +3 -2
- data/build/schema_printer.rb +103 -0
- data/build/support/cplusplus.rb +2 -2
- data/build/support/cxx_dependency_map.rb +2575 -868
- data/dev/ci/lib/functions.sh +1 -1
- data/dev/ci/lib/set-container-envvars.sh +1 -1
- data/dev/ci/lib/setup-container.sh +1 -1
- data/dev/ci/run-tests-natively +1 -1
- data/dev/ci/run-tests-with-docker +1 -1
- data/dev/ci/scripts/debug-console-wrapper.sh +1 -1
- data/dev/ci/scripts/docker-entrypoint-stage2.sh +1 -1
- data/dev/ci/scripts/docker-entrypoint.sh +1 -1
- data/dev/ci/scripts/inituidgid +1 -1
- data/dev/ci/scripts/run-tests-natively-stage2.sh +1 -1
- data/dev/ci/scripts/setup-host-natively.sh +1 -1
- data/dev/ci/setup-host +1 -1
- data/dev/ci/tests/apache2/run +1 -1
- data/dev/ci/tests/apache2/setup +1 -1
- data/dev/ci/tests/cxx/run +1 -1
- data/dev/ci/tests/cxx/setup +1 -1
- data/dev/ci/tests/debian/Jenkinsfile +0 -1
- data/dev/ci/tests/debian/run +1 -1
- data/dev/ci/tests/nginx-dynamic/run +1 -1
- data/dev/ci/tests/nginx-dynamic/setup +1 -1
- data/dev/ci/tests/nginx/run +1 -1
- data/dev/ci/tests/nginx/setup +1 -1
- data/dev/ci/tests/nodejs/run +1 -1
- data/dev/ci/tests/nodejs/setup +1 -1
- data/dev/ci/tests/rpm/run +1 -1
- data/dev/ci/tests/ruby/run +1 -1
- data/dev/ci/tests/ruby/setup +1 -1
- data/dev/ci/tests/source-packaging/run +1 -1
- data/dev/ci/tests/source-packaging/setup +1 -1
- data/dev/ci/tests/standalone/run +1 -1
- data/dev/ci/tests/standalone/setup +1 -1
- data/dev/configkit-schemas/index.json +1708 -0
- data/dev/configkit-schemas/update_schema_inline_comments.rb +118 -0
- data/dev/copy_boost_headers +13 -1
- data/dev/index_cxx_dependencies.rb +20 -7
- data/dev/vagrant/provision.sh +1 -1
- data/resources/mime.types +1 -0
- data/resources/templates/standalone/http.erb +1 -6
- data/src/agent/Core/AdminPanelConnector.h +550 -0
- data/src/agent/Core/ApiServer.h +159 -97
- data/src/agent/Core/ApplicationPool/Group.h +2 -0
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +3 -2
- data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +109 -0
- data/src/agent/Core/ApplicationPool/Implementation.cpp +5 -3
- data/src/agent/Core/ApplicationPool/Options.h +5 -6
- data/src/agent/Core/ApplicationPool/Pool.h +59 -2
- data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +3 -3
- data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +2 -2
- data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +6 -0
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +129 -0
- data/src/agent/Core/Config.h +475 -0
- data/src/agent/Core/ConfigChange.cpp +349 -0
- data/src/agent/Core/ConfigChange.h +54 -0
- data/src/agent/Core/Controller.h +35 -3
- data/src/agent/Core/Controller/CheckoutSession.cpp +1 -1
- data/src/agent/Core/Controller/Config.cpp +0 -2
- data/src/agent/Core/Controller/Config.h +168 -104
- data/src/agent/Core/Controller/ForwardResponse.cpp +1 -1
- data/src/agent/Core/Controller/InitRequest.cpp +14 -15
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +34 -44
- data/src/agent/Core/Controller/Request.h +0 -1
- data/src/agent/Core/CoreMain.cpp +236 -349
- data/src/agent/Core/OptionParser.h +75 -89
- data/src/agent/Core/SecurityUpdateChecker.h +263 -100
- data/src/agent/Core/SpawningKit/Config.h +6 -2
- data/src/agent/Core/SpawningKit/Spawner.h +0 -45
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +1 -0
- data/src/agent/Shared/ApiAccountUtils.h +318 -0
- data/src/agent/Shared/ApiServerUtils.h +3 -104
- data/src/agent/Shared/Fundamentals/Initialization.cpp +81 -44
- data/src/agent/Shared/Fundamentals/Initialization.h +12 -7
- data/src/agent/TempDirToucher/TempDirToucherMain.cpp +21 -0
- data/src/agent/Watchdog/AgentWatcher.cpp +1 -1
- data/src/agent/Watchdog/ApiServer.h +100 -14
- data/src/agent/Watchdog/Config.h +340 -0
- data/src/agent/Watchdog/CoreWatcher.cpp +27 -13
- data/src/agent/Watchdog/InstanceDirToucher.cpp +1 -1
- data/src/agent/Watchdog/WatchdogMain.cpp +190 -206
- data/src/apache2_module/Bucket.cpp +4 -0
- data/src/apache2_module/Bucket.h +7 -3
- data/src/apache2_module/CBindings.cpp +49 -0
- data/src/apache2_module/Config.cpp +242 -0
- data/src/apache2_module/Config.h +109 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +485 -0
- data/src/apache2_module/{ConfigurationCommands.cpp.cxxcodebuilder → ConfigGeneral/AutoGeneratedDefinitions.cpp.cxxcodebuilder} +29 -15
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +298 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp.cxxcodebuilder +171 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +854 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp.cxxcodebuilder +188 -0
- data/src/apache2_module/ConfigGeneral/ManifestGeneration.h +610 -0
- data/src/apache2_module/ConfigGeneral/SetterFuncs.h +65 -0
- data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +174 -0
- data/src/apache2_module/{MergeDirConfig.cpp.cxxcodebuilder → DirConfig/AutoGeneratedCreateFunction.cpp.cxxcodebuilder} +54 -32
- data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +113 -0
- data/src/apache2_module/{SetHeaders.cpp.cxxcodebuilder → DirConfig/AutoGeneratedHeaderSerialization.cpp.cxxcodebuilder} +34 -23
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +426 -0
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +165 -0
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +269 -0
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp.cxxcodebuilder +148 -0
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +534 -0
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h.cxxcodebuilder +230 -0
- data/src/apache2_module/DirectoryMapper.h +19 -16
- data/src/apache2_module/Hooks.cpp +124 -138
- data/src/apache2_module/Hooks.h +9 -14
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp +263 -0
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +152 -0
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +299 -0
- data/src/apache2_module/{ConfigurationFields.hpp.cxxcodebuilder → ServerConfig/AutoGeneratedStruct.h.cxxcodebuilder} +105 -18
- data/src/apache2_module/Utils.h +215 -0
- data/src/apache2_module/mod_passenger.c +16 -8
- data/src/cxx_supportlib/AppTypes.h +2 -0
- data/src/cxx_supportlib/ConfigKit/ConfigKit.h +1 -1
- data/src/cxx_supportlib/ConfigKit/DummyTranslator.h +8 -8
- data/src/cxx_supportlib/ConfigKit/IN_PRACTICE.md +7 -41
- data/src/cxx_supportlib/ConfigKit/PrefixTranslator.h +12 -66
- data/src/cxx_supportlib/ConfigKit/Schema.h +62 -11
- data/src/cxx_supportlib/ConfigKit/{ValidationUtils.h → SchemaUtils.h} +12 -3
- data/src/cxx_supportlib/ConfigKit/Store.h +17 -9
- data/src/cxx_supportlib/ConfigKit/SubComponentUtils.h +2 -1
- data/src/cxx_supportlib/ConfigKit/TableTranslator.h +13 -70
- data/src/cxx_supportlib/ConfigKit/Translator.h +125 -0
- data/src/cxx_supportlib/Constants.h +1 -3
- data/src/cxx_supportlib/FileTools/FileManip.cpp +297 -0
- data/src/cxx_supportlib/FileTools/FileManip.h +162 -0
- data/src/cxx_supportlib/{Utils → FileTools}/LargeFiles.cpp +6 -3
- data/src/cxx_supportlib/{Utils → FileTools}/LargeFiles.h +7 -5
- data/src/cxx_supportlib/FileTools/PathManip.cpp +240 -0
- data/src/cxx_supportlib/FileTools/PathManip.h +91 -0
- data/src/cxx_supportlib/FileTools/PathManipCBindings.cpp +62 -0
- data/src/{apache2_module/Configuration.h → cxx_supportlib/FileTools/PathManipCBindings.h} +12 -19
- data/src/cxx_supportlib/Hooks.h +19 -16
- data/src/cxx_supportlib/InstanceDirectory.h +11 -0
- data/src/cxx_supportlib/JsonTools/Autocast.h +79 -0
- data/src/cxx_supportlib/JsonTools/CBindings.cpp +364 -0
- data/src/cxx_supportlib/JsonTools/CBindings.h +101 -0
- data/src/cxx_supportlib/LoggingKit/Config.h +13 -0
- data/src/cxx_supportlib/LoggingKit/Context.h +5 -2
- data/src/cxx_supportlib/LoggingKit/Forward.h +0 -1
- data/src/cxx_supportlib/LoggingKit/Implementation.cpp +12 -4
- data/src/cxx_supportlib/ResourceLocator.h +15 -0
- data/src/cxx_supportlib/ServerKit/Config.h +156 -0
- data/src/cxx_supportlib/ServerKit/Context.h +59 -38
- data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +3 -2
- data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpServer.h +16 -2
- data/src/cxx_supportlib/ServerKit/Server.h +32 -15
- data/src/cxx_supportlib/Utils.cpp +0 -441
- data/src/cxx_supportlib/Utils.h +0 -158
- data/src/cxx_supportlib/Utils/Curl.h +1 -0
- data/src/cxx_supportlib/Utils/ProcessMetricsCollector.h +1 -0
- data/src/cxx_supportlib/Utils/StrIntUtilsNoStrictAliasing.cpp +2 -0
- data/src/cxx_supportlib/Utils/VariantMap.h +31 -0
- data/src/cxx_supportlib/WatchdogLauncher.cpp +7 -79
- data/src/cxx_supportlib/WatchdogLauncher.h +50 -53
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +981 -0
- data/src/cxx_supportlib/oxt/macros.hpp +9 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/COPYING +145 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/changelog.md +342 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/readme.md +49 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/base64/base64.hpp +178 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/client.hpp +33 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/close.hpp +342 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio.hpp +131 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio_ssl.hpp +39 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/chrono.hpp +68 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/connection_hdl.hpp +52 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/cpp11.hpp +162 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/functional.hpp +105 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/md5.hpp +448 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/memory.hpp +89 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/network.hpp +106 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/platforms.hpp +46 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/random.hpp +82 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/regex.hpp +59 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/stdint.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/system_error.hpp +84 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/thread.hpp +84 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/time.hpp +56 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/type_traits.hpp +65 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/concurrency/basic.hpp +46 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/concurrency/none.hpp +80 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_client.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_no_tls.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_no_tls_client.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/boost_config.hpp +72 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core.hpp +285 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core_client.hpp +294 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug.hpp +286 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug_asio.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug_asio_no_tls.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/minimal_client.hpp +72 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/minimal_server.hpp +312 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection.hpp +1651 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection_base.hpp +38 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint.hpp +700 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint_base.hpp +38 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/error.hpp +277 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/extension.hpp +102 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +128 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +752 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/frame.hpp +861 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/constants.hpp +308 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/parser.hpp +196 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/request.hpp +191 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/response.hpp +266 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/parser.hpp +619 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/request.hpp +124 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/response.hpp +188 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/connection_impl.hpp +2372 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/endpoint_impl.hpp +269 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/utilities_impl.hpp +87 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/basic.hpp +199 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/levels.hpp +203 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/stub.hpp +119 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/syslog.hpp +146 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/alloc.hpp +105 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/message.hpp +340 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/pool.hpp +229 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/base.hpp +299 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi00.hpp +462 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi07.hpp +78 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi08.hpp +83 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi13.hpp +1056 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/processor.hpp +407 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/random/none.hpp +60 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/random/random_device.hpp +80 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/client_endpoint.hpp +173 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/server_endpoint.hpp +190 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/server.hpp +33 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/sha1/sha1.hpp +189 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/base.hpp +232 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/connection.hpp +1204 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/endpoint.hpp +1147 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/base.hpp +159 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/none.hpp +370 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/tls.hpp +484 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/connection.hpp +238 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/endpoint.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/base.hpp +104 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/connection.hpp +412 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/endpoint.hpp +140 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/base.hpp +133 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/connection.hpp +714 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/endpoint.hpp +222 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/base.hpp +95 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/connection.hpp +286 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/endpoint.hpp +140 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/uri.hpp +355 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utf8_validator.hpp +154 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utilities.hpp +182 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/version.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +951 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +520 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +258 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +942 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +567 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +697 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +1519 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +1137 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +288 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +569 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +854 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +371 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +521 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +2241 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +246 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +260 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +238 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +483 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +825 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/datagram_socket_service.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer_service.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/addressof.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +491 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +385 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +192 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +1050 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +294 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +229 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +208 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +244 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/function.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +161 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +480 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +333 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +453 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +432 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +688 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +167 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +307 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +498 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +126 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +76 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_serial_port_service.ipp +153 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +269 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +315 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +649 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +3470 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/task_io_service.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/task_io_service.ipp +476 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +136 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +500 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +216 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +324 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_serial_port_service.hpp +236 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +460 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +452 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +170 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +123 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +133 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +221 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/shared_ptr.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +218 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +336 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +318 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +410 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +144 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service_operation.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service_thread_info.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +333 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/weak_ptr.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/win_iocp_serial_port_service.hpp +230 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +293 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +345 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +123 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +124 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_type.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +360 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +340 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +432 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_service.hpp +156 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_service.ipp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +755 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +812 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +1149 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +556 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +355 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.cpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +767 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +827 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +772 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +202 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +243 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +248 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +265 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +262 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +246 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +206 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +571 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +228 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +300 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_service.hpp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +492 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +364 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor_service.hpp +262 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/raw_socket_service.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +633 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +666 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +925 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/seq_packet_socket_service.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +169 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_service.hpp +255 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_service.hpp +136 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_acceptor_service.hpp +308 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +522 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/basic_context.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +789 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_service.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +327 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +351 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +115 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +1177 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +168 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/basic_context.hpp +436 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/context_service.hpp +176 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_context_service.hpp +396 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_operation.hpp +526 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_stream_service.hpp +573 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/stream.hpp +503 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/stream_service.hpp +186 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +758 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_service.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_socket_service.hpp +382 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +94 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/waitable_timer_service.hpp +170 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_handle.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +378 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +361 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle_service.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle_service.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle_service.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +620 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +672 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/chrono.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/chrono_io.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/chrono.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/chrono.hpp +242 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/process_cpu_clocks.hpp +356 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/thread_clock.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/chrono.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp +354 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/thread_clock.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/process_cpu_clocks.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/thread_clock.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/no_warning/signed_unsigned_cmp.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/scan_keyword.hpp +163 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/floor.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/include.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_get.hpp +593 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +295 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_put.hpp +317 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +1003 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/ios_base_state.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_get.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +1243 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_put.hpp +261 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_units.hpp +260 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/ios_base_state_ptr.hpp +437 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/manip_base.hpp +101 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/to_string.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io_v1/chrono_io.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/process_cpu_clocks.hpp +525 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/round.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/thread_clock.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/typeof/boost/chrono/chrono.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/typeof/boost/ratio.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +460 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_mask.hpp +126 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_min_max.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/chrono.cpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/process_cpu_clocks.cpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/thread_clock.cpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/random/src/random_device.cpp +250 -0
- data/src/cxx_supportlib/vendor-modified/boost/pointer_cast.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/random.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/additive_combine.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/bernoulli_distribution.hpp +197 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/beta_distribution.hpp +184 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/binomial_distribution.hpp +434 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/cauchy_distribution.hpp +214 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/chi_squared_distribution.hpp +209 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/auto_link.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/config.hpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/const_mod.hpp +216 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/disable_warnings.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/enable_warnings.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/generator_bits.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/generator_seed_seq.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/int_float_pair.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/integer_log2.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/iterator_mixin.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/large_arithmetic.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/operators.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/polynomial.hpp +384 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/ptr_helper.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed.hpp +115 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed_impl.hpp +398 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/signed_unsigned_tools.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/uniform_int_float.hpp +76 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/vector_io.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/discard_block.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/discrete_distribution.hpp +636 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/exponential_distribution.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/extreme_value_distribution.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/fisher_f_distribution.hpp +183 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/gamma_distribution.hpp +292 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/generate_canonical.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/geometric_distribution.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +883 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/independent_bits.hpp +271 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/lagged_fibonacci.hpp +537 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/laplace_distribution.hpp +175 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_congruential.hpp +466 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_feedback_shift.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/lognormal_distribution.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/mersenne_twister.hpp +682 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/negative_binomial_distribution.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/non_central_chi_squared_distribution.hpp +221 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/normal_distribution.hpp +374 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/piecewise_constant_distribution.hpp +466 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/piecewise_linear_distribution.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/poisson_distribution.hpp +360 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/random_device.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/random_number_generator.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/ranlux.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/seed_seq.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_order.hpp +269 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_output.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/student_t_distribution.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +613 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/taus88.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/traits.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/triangle_distribution.hpp +232 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_01.hpp +257 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int_distribution.hpp +419 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_on_sphere.hpp +284 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_smallint.hpp +307 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/variate_generator.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/weibull_distribution.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/xor_combine.hpp +208 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio.hpp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/ratio_io.hpp +1342 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/include.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/abs.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/arithmetic.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/comparison.hpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/divides.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/equal_to.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/gcd.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater_equal.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/lcm.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less_equal.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/minus.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/negate.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/not_equal_to.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/numeric_cast.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/plus.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_c_tag.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_constant.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/sign.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/times.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_io.hpp +1076 -0
- data/src/cxx_supportlib/vendor-modified/boost/rational.hpp +1002 -0
- data/src/cxx_supportlib/vendor-modified/modp_b64.cpp +11 -0
- data/src/helper-scripts/rack-preloader.rb +1 -1
- data/src/nginx_module/{ConfigurationCommands.c → ConfigGeneral/AutoGeneratedDefinitions.c} +351 -134
- data/src/nginx_module/{ConfigurationCommands.c.cxxcodebuilder → ConfigGeneral/AutoGeneratedDefinitions.c.cxxcodebuilder} +14 -25
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +396 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c.cxxcodebuilder +160 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +831 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c.cxxcodebuilder +168 -0
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.c +887 -0
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.h +100 -0
- data/src/nginx_module/Configuration.c +165 -621
- data/src/nginx_module/Configuration.h +43 -33
- data/src/nginx_module/ContentHandler.c +46 -40
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +282 -0
- data/src/nginx_module/{CreateLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder} +43 -17
- data/src/nginx_module/{CacheLocationConfig.c → LocationConfig/AutoGeneratedHeaderSerialization.c} +148 -180
- data/src/nginx_module/{CacheLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedHeaderSerialization.c.cxxcodebuilder} +13 -11
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +595 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +190 -0
- data/src/nginx_module/{MergeLocationConfig.c → LocationConfig/AutoGeneratedMergeFunction.c} +32 -42
- data/src/nginx_module/{MergeLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedMergeFunction.c.cxxcodebuilder} +18 -11
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +220 -0
- data/src/nginx_module/{LocationConfig.h.cxxcodebuilder → LocationConfig/AutoGeneratedStruct.h.cxxcodebuilder} +70 -48
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c +163 -0
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder +125 -0
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c +303 -0
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +173 -0
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h +133 -0
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h.cxxcodebuilder +154 -0
- data/src/nginx_module/config +13 -4
- data/src/nginx_module/ngx_http_passenger_module.c +154 -84
- data/src/ruby_supportlib/phusion_passenger.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +613 -131
- data/src/ruby_supportlib/phusion_passenger/apache2/config_utils.rb +52 -0
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +18 -4
- data/src/ruby_supportlib/phusion_passenger/config/main.rb +2 -0
- data/src/ruby_supportlib/phusion_passenger/config/system_properties_command.rb +104 -0
- data/src/ruby_supportlib/phusion_passenger/constants.rb +0 -2
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +470 -138
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info.rb +17 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +11 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +7 -7
- data/src/ruby_supportlib/phusion_passenger/platform_info/networking.rb +293 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +8 -54
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +1 -5
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +4 -7
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller.rb +1 -1
- data/src/schema_printer/SchemaPrinterMain.cpp +78 -0
- data/src/schema_printer/SchemaPrinterMain.cpp.cxxcodebuilder +116 -0
- metadata +671 -30
- data/src/apache2_module/Configuration.cpp +0 -737
- data/src/apache2_module/Configuration.hpp +0 -274
- data/src/apache2_module/ConfigurationCommands.cpp +0 -199
- data/src/apache2_module/ConfigurationFields.hpp +0 -187
- data/src/apache2_module/ConfigurationSetters.cpp +0 -436
- data/src/apache2_module/ConfigurationSetters.cpp.cxxcodebuilder +0 -144
- data/src/apache2_module/CreateDirConfig.cpp +0 -68
- data/src/apache2_module/CreateDirConfig.cpp.cxxcodebuilder +0 -81
- data/src/apache2_module/MergeDirConfig.cpp +0 -155
- data/src/apache2_module/SetHeaders.cpp +0 -111
- data/src/nginx_module/CreateLocationConfig.c +0 -100
- data/src/nginx_module/LocationConfig.h +0 -95
@@ -0,0 +1,1137 @@
|
|
1
|
+
//
|
2
|
+
// basic_socket_acceptor.hpp
|
3
|
+
// ~~~~~~~~~~~~~~~~~~~~~~~~~
|
4
|
+
//
|
5
|
+
// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
|
+
//
|
7
|
+
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
|
+
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
9
|
+
//
|
10
|
+
|
11
|
+
#ifndef BOOST_ASIO_BASIC_SOCKET_ACCEPTOR_HPP
|
12
|
+
#define BOOST_ASIO_BASIC_SOCKET_ACCEPTOR_HPP
|
13
|
+
|
14
|
+
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
15
|
+
# pragma once
|
16
|
+
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
|
17
|
+
|
18
|
+
#include <boost/asio/detail/config.hpp>
|
19
|
+
#include <boost/asio/basic_io_object.hpp>
|
20
|
+
#include <boost/asio/basic_socket.hpp>
|
21
|
+
#include <boost/asio/detail/handler_type_requirements.hpp>
|
22
|
+
#include <boost/asio/detail/throw_error.hpp>
|
23
|
+
#include <boost/asio/detail/type_traits.hpp>
|
24
|
+
#include <boost/asio/error.hpp>
|
25
|
+
#include <boost/asio/socket_acceptor_service.hpp>
|
26
|
+
#include <boost/asio/socket_base.hpp>
|
27
|
+
|
28
|
+
#include <boost/asio/detail/push_options.hpp>
|
29
|
+
|
30
|
+
namespace boost {
|
31
|
+
namespace asio {
|
32
|
+
|
33
|
+
/// Provides the ability to accept new connections.
|
34
|
+
/**
|
35
|
+
* The basic_socket_acceptor class template is used for accepting new socket
|
36
|
+
* connections.
|
37
|
+
*
|
38
|
+
* @par Thread Safety
|
39
|
+
* @e Distinct @e objects: Safe.@n
|
40
|
+
* @e Shared @e objects: Unsafe.
|
41
|
+
*
|
42
|
+
* @par Example
|
43
|
+
* Opening a socket acceptor with the SO_REUSEADDR option enabled:
|
44
|
+
* @code
|
45
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
46
|
+
* boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(), port);
|
47
|
+
* acceptor.open(endpoint.protocol());
|
48
|
+
* acceptor.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
|
49
|
+
* acceptor.bind(endpoint);
|
50
|
+
* acceptor.listen();
|
51
|
+
* @endcode
|
52
|
+
*/
|
53
|
+
template <typename Protocol,
|
54
|
+
typename SocketAcceptorService = socket_acceptor_service<Protocol> >
|
55
|
+
class basic_socket_acceptor
|
56
|
+
: public basic_io_object<SocketAcceptorService>,
|
57
|
+
public socket_base
|
58
|
+
{
|
59
|
+
public:
|
60
|
+
/// (Deprecated: Use native_handle_type.) The native representation of an
|
61
|
+
/// acceptor.
|
62
|
+
typedef typename SocketAcceptorService::native_handle_type native_type;
|
63
|
+
|
64
|
+
/// The native representation of an acceptor.
|
65
|
+
typedef typename SocketAcceptorService::native_handle_type native_handle_type;
|
66
|
+
|
67
|
+
/// The protocol type.
|
68
|
+
typedef Protocol protocol_type;
|
69
|
+
|
70
|
+
/// The endpoint type.
|
71
|
+
typedef typename Protocol::endpoint endpoint_type;
|
72
|
+
|
73
|
+
/// Construct an acceptor without opening it.
|
74
|
+
/**
|
75
|
+
* This constructor creates an acceptor without opening it to listen for new
|
76
|
+
* connections. The open() function must be called before the acceptor can
|
77
|
+
* accept new socket connections.
|
78
|
+
*
|
79
|
+
* @param io_service The io_service object that the acceptor will use to
|
80
|
+
* dispatch handlers for any asynchronous operations performed on the
|
81
|
+
* acceptor.
|
82
|
+
*/
|
83
|
+
explicit basic_socket_acceptor(boost::asio::io_service& io_service)
|
84
|
+
: basic_io_object<SocketAcceptorService>(io_service)
|
85
|
+
{
|
86
|
+
}
|
87
|
+
|
88
|
+
/// Construct an open acceptor.
|
89
|
+
/**
|
90
|
+
* This constructor creates an acceptor and automatically opens it.
|
91
|
+
*
|
92
|
+
* @param io_service The io_service object that the acceptor will use to
|
93
|
+
* dispatch handlers for any asynchronous operations performed on the
|
94
|
+
* acceptor.
|
95
|
+
*
|
96
|
+
* @param protocol An object specifying protocol parameters to be used.
|
97
|
+
*
|
98
|
+
* @throws boost::system::system_error Thrown on failure.
|
99
|
+
*/
|
100
|
+
basic_socket_acceptor(boost::asio::io_service& io_service,
|
101
|
+
const protocol_type& protocol)
|
102
|
+
: basic_io_object<SocketAcceptorService>(io_service)
|
103
|
+
{
|
104
|
+
boost::system::error_code ec;
|
105
|
+
this->get_service().open(this->get_implementation(), protocol, ec);
|
106
|
+
boost::asio::detail::throw_error(ec, "open");
|
107
|
+
}
|
108
|
+
|
109
|
+
/// Construct an acceptor opened on the given endpoint.
|
110
|
+
/**
|
111
|
+
* This constructor creates an acceptor and automatically opens it to listen
|
112
|
+
* for new connections on the specified endpoint.
|
113
|
+
*
|
114
|
+
* @param io_service The io_service object that the acceptor will use to
|
115
|
+
* dispatch handlers for any asynchronous operations performed on the
|
116
|
+
* acceptor.
|
117
|
+
*
|
118
|
+
* @param endpoint An endpoint on the local machine on which the acceptor
|
119
|
+
* will listen for new connections.
|
120
|
+
*
|
121
|
+
* @param reuse_addr Whether the constructor should set the socket option
|
122
|
+
* socket_base::reuse_address.
|
123
|
+
*
|
124
|
+
* @throws boost::system::system_error Thrown on failure.
|
125
|
+
*
|
126
|
+
* @note This constructor is equivalent to the following code:
|
127
|
+
* @code
|
128
|
+
* basic_socket_acceptor<Protocol> acceptor(io_service);
|
129
|
+
* acceptor.open(endpoint.protocol());
|
130
|
+
* if (reuse_addr)
|
131
|
+
* acceptor.set_option(socket_base::reuse_address(true));
|
132
|
+
* acceptor.bind(endpoint);
|
133
|
+
* acceptor.listen(listen_backlog);
|
134
|
+
* @endcode
|
135
|
+
*/
|
136
|
+
basic_socket_acceptor(boost::asio::io_service& io_service,
|
137
|
+
const endpoint_type& endpoint, bool reuse_addr = true)
|
138
|
+
: basic_io_object<SocketAcceptorService>(io_service)
|
139
|
+
{
|
140
|
+
boost::system::error_code ec;
|
141
|
+
const protocol_type protocol = endpoint.protocol();
|
142
|
+
this->get_service().open(this->get_implementation(), protocol, ec);
|
143
|
+
boost::asio::detail::throw_error(ec, "open");
|
144
|
+
if (reuse_addr)
|
145
|
+
{
|
146
|
+
this->get_service().set_option(this->get_implementation(),
|
147
|
+
socket_base::reuse_address(true), ec);
|
148
|
+
boost::asio::detail::throw_error(ec, "set_option");
|
149
|
+
}
|
150
|
+
this->get_service().bind(this->get_implementation(), endpoint, ec);
|
151
|
+
boost::asio::detail::throw_error(ec, "bind");
|
152
|
+
this->get_service().listen(this->get_implementation(),
|
153
|
+
socket_base::max_connections, ec);
|
154
|
+
boost::asio::detail::throw_error(ec, "listen");
|
155
|
+
}
|
156
|
+
|
157
|
+
/// Construct a basic_socket_acceptor on an existing native acceptor.
|
158
|
+
/**
|
159
|
+
* This constructor creates an acceptor object to hold an existing native
|
160
|
+
* acceptor.
|
161
|
+
*
|
162
|
+
* @param io_service The io_service object that the acceptor will use to
|
163
|
+
* dispatch handlers for any asynchronous operations performed on the
|
164
|
+
* acceptor.
|
165
|
+
*
|
166
|
+
* @param protocol An object specifying protocol parameters to be used.
|
167
|
+
*
|
168
|
+
* @param native_acceptor A native acceptor.
|
169
|
+
*
|
170
|
+
* @throws boost::system::system_error Thrown on failure.
|
171
|
+
*/
|
172
|
+
basic_socket_acceptor(boost::asio::io_service& io_service,
|
173
|
+
const protocol_type& protocol, const native_handle_type& native_acceptor)
|
174
|
+
: basic_io_object<SocketAcceptorService>(io_service)
|
175
|
+
{
|
176
|
+
boost::system::error_code ec;
|
177
|
+
this->get_service().assign(this->get_implementation(),
|
178
|
+
protocol, native_acceptor, ec);
|
179
|
+
boost::asio::detail::throw_error(ec, "assign");
|
180
|
+
}
|
181
|
+
|
182
|
+
#if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
|
183
|
+
/// Move-construct a basic_socket_acceptor from another.
|
184
|
+
/**
|
185
|
+
* This constructor moves an acceptor from one object to another.
|
186
|
+
*
|
187
|
+
* @param other The other basic_socket_acceptor object from which the move
|
188
|
+
* will occur.
|
189
|
+
*
|
190
|
+
* @note Following the move, the moved-from object is in the same state as if
|
191
|
+
* constructed using the @c basic_socket_acceptor(io_service&) constructor.
|
192
|
+
*/
|
193
|
+
basic_socket_acceptor(basic_socket_acceptor&& other)
|
194
|
+
: basic_io_object<SocketAcceptorService>(
|
195
|
+
BOOST_ASIO_MOVE_CAST(basic_socket_acceptor)(other))
|
196
|
+
{
|
197
|
+
}
|
198
|
+
|
199
|
+
/// Move-assign a basic_socket_acceptor from another.
|
200
|
+
/**
|
201
|
+
* This assignment operator moves an acceptor from one object to another.
|
202
|
+
*
|
203
|
+
* @param other The other basic_socket_acceptor object from which the move
|
204
|
+
* will occur.
|
205
|
+
*
|
206
|
+
* @note Following the move, the moved-from object is in the same state as if
|
207
|
+
* constructed using the @c basic_socket_acceptor(io_service&) constructor.
|
208
|
+
*/
|
209
|
+
basic_socket_acceptor& operator=(basic_socket_acceptor&& other)
|
210
|
+
{
|
211
|
+
basic_io_object<SocketAcceptorService>::operator=(
|
212
|
+
BOOST_ASIO_MOVE_CAST(basic_socket_acceptor)(other));
|
213
|
+
return *this;
|
214
|
+
}
|
215
|
+
|
216
|
+
// All socket acceptors have access to each other's implementations.
|
217
|
+
template <typename Protocol1, typename SocketAcceptorService1>
|
218
|
+
friend class basic_socket_acceptor;
|
219
|
+
|
220
|
+
/// Move-construct a basic_socket_acceptor from an acceptor of another
|
221
|
+
/// protocol type.
|
222
|
+
/**
|
223
|
+
* This constructor moves an acceptor from one object to another.
|
224
|
+
*
|
225
|
+
* @param other The other basic_socket_acceptor object from which the move
|
226
|
+
* will occur.
|
227
|
+
*
|
228
|
+
* @note Following the move, the moved-from object is in the same state as if
|
229
|
+
* constructed using the @c basic_socket(io_service&) constructor.
|
230
|
+
*/
|
231
|
+
template <typename Protocol1, typename SocketAcceptorService1>
|
232
|
+
basic_socket_acceptor(
|
233
|
+
basic_socket_acceptor<Protocol1, SocketAcceptorService1>&& other,
|
234
|
+
typename enable_if<is_convertible<Protocol1, Protocol>::value>::type* = 0)
|
235
|
+
: basic_io_object<SocketAcceptorService>(
|
236
|
+
other.get_service(), other.get_implementation())
|
237
|
+
{
|
238
|
+
}
|
239
|
+
|
240
|
+
/// Move-assign a basic_socket_acceptor from an acceptor of another protocol
|
241
|
+
/// type.
|
242
|
+
/**
|
243
|
+
* This assignment operator moves an acceptor from one object to another.
|
244
|
+
*
|
245
|
+
* @param other The other basic_socket_acceptor object from which the move
|
246
|
+
* will occur.
|
247
|
+
*
|
248
|
+
* @note Following the move, the moved-from object is in the same state as if
|
249
|
+
* constructed using the @c basic_socket(io_service&) constructor.
|
250
|
+
*/
|
251
|
+
template <typename Protocol1, typename SocketAcceptorService1>
|
252
|
+
typename enable_if<is_convertible<Protocol1, Protocol>::value,
|
253
|
+
basic_socket_acceptor>::type& operator=(
|
254
|
+
basic_socket_acceptor<Protocol1, SocketAcceptorService1>&& other)
|
255
|
+
{
|
256
|
+
basic_socket_acceptor tmp(BOOST_ASIO_MOVE_CAST2(basic_socket_acceptor<
|
257
|
+
Protocol1, SocketAcceptorService1>)(other));
|
258
|
+
basic_io_object<SocketAcceptorService>::operator=(
|
259
|
+
BOOST_ASIO_MOVE_CAST(basic_socket_acceptor)(tmp));
|
260
|
+
return *this;
|
261
|
+
}
|
262
|
+
#endif // defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
|
263
|
+
|
264
|
+
/// Open the acceptor using the specified protocol.
|
265
|
+
/**
|
266
|
+
* This function opens the socket acceptor so that it will use the specified
|
267
|
+
* protocol.
|
268
|
+
*
|
269
|
+
* @param protocol An object specifying which protocol is to be used.
|
270
|
+
*
|
271
|
+
* @throws boost::system::system_error Thrown on failure.
|
272
|
+
*
|
273
|
+
* @par Example
|
274
|
+
* @code
|
275
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
276
|
+
* acceptor.open(boost::asio::ip::tcp::v4());
|
277
|
+
* @endcode
|
278
|
+
*/
|
279
|
+
void open(const protocol_type& protocol = protocol_type())
|
280
|
+
{
|
281
|
+
boost::system::error_code ec;
|
282
|
+
this->get_service().open(this->get_implementation(), protocol, ec);
|
283
|
+
boost::asio::detail::throw_error(ec, "open");
|
284
|
+
}
|
285
|
+
|
286
|
+
/// Open the acceptor using the specified protocol.
|
287
|
+
/**
|
288
|
+
* This function opens the socket acceptor so that it will use the specified
|
289
|
+
* protocol.
|
290
|
+
*
|
291
|
+
* @param protocol An object specifying which protocol is to be used.
|
292
|
+
*
|
293
|
+
* @param ec Set to indicate what error occurred, if any.
|
294
|
+
*
|
295
|
+
* @par Example
|
296
|
+
* @code
|
297
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
298
|
+
* boost::system::error_code ec;
|
299
|
+
* acceptor.open(boost::asio::ip::tcp::v4(), ec);
|
300
|
+
* if (ec)
|
301
|
+
* {
|
302
|
+
* // An error occurred.
|
303
|
+
* }
|
304
|
+
* @endcode
|
305
|
+
*/
|
306
|
+
boost::system::error_code open(const protocol_type& protocol,
|
307
|
+
boost::system::error_code& ec)
|
308
|
+
{
|
309
|
+
return this->get_service().open(this->get_implementation(), protocol, ec);
|
310
|
+
}
|
311
|
+
|
312
|
+
/// Assigns an existing native acceptor to the acceptor.
|
313
|
+
/*
|
314
|
+
* This function opens the acceptor to hold an existing native acceptor.
|
315
|
+
*
|
316
|
+
* @param protocol An object specifying which protocol is to be used.
|
317
|
+
*
|
318
|
+
* @param native_acceptor A native acceptor.
|
319
|
+
*
|
320
|
+
* @throws boost::system::system_error Thrown on failure.
|
321
|
+
*/
|
322
|
+
void assign(const protocol_type& protocol,
|
323
|
+
const native_handle_type& native_acceptor)
|
324
|
+
{
|
325
|
+
boost::system::error_code ec;
|
326
|
+
this->get_service().assign(this->get_implementation(),
|
327
|
+
protocol, native_acceptor, ec);
|
328
|
+
boost::asio::detail::throw_error(ec, "assign");
|
329
|
+
}
|
330
|
+
|
331
|
+
/// Assigns an existing native acceptor to the acceptor.
|
332
|
+
/*
|
333
|
+
* This function opens the acceptor to hold an existing native acceptor.
|
334
|
+
*
|
335
|
+
* @param protocol An object specifying which protocol is to be used.
|
336
|
+
*
|
337
|
+
* @param native_acceptor A native acceptor.
|
338
|
+
*
|
339
|
+
* @param ec Set to indicate what error occurred, if any.
|
340
|
+
*/
|
341
|
+
boost::system::error_code assign(const protocol_type& protocol,
|
342
|
+
const native_handle_type& native_acceptor, boost::system::error_code& ec)
|
343
|
+
{
|
344
|
+
return this->get_service().assign(this->get_implementation(),
|
345
|
+
protocol, native_acceptor, ec);
|
346
|
+
}
|
347
|
+
|
348
|
+
/// Determine whether the acceptor is open.
|
349
|
+
bool is_open() const
|
350
|
+
{
|
351
|
+
return this->get_service().is_open(this->get_implementation());
|
352
|
+
}
|
353
|
+
|
354
|
+
/// Bind the acceptor to the given local endpoint.
|
355
|
+
/**
|
356
|
+
* This function binds the socket acceptor to the specified endpoint on the
|
357
|
+
* local machine.
|
358
|
+
*
|
359
|
+
* @param endpoint An endpoint on the local machine to which the socket
|
360
|
+
* acceptor will be bound.
|
361
|
+
*
|
362
|
+
* @throws boost::system::system_error Thrown on failure.
|
363
|
+
*
|
364
|
+
* @par Example
|
365
|
+
* @code
|
366
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
367
|
+
* boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(), 12345);
|
368
|
+
* acceptor.open(endpoint.protocol());
|
369
|
+
* acceptor.bind(endpoint);
|
370
|
+
* @endcode
|
371
|
+
*/
|
372
|
+
void bind(const endpoint_type& endpoint)
|
373
|
+
{
|
374
|
+
boost::system::error_code ec;
|
375
|
+
this->get_service().bind(this->get_implementation(), endpoint, ec);
|
376
|
+
boost::asio::detail::throw_error(ec, "bind");
|
377
|
+
}
|
378
|
+
|
379
|
+
/// Bind the acceptor to the given local endpoint.
|
380
|
+
/**
|
381
|
+
* This function binds the socket acceptor to the specified endpoint on the
|
382
|
+
* local machine.
|
383
|
+
*
|
384
|
+
* @param endpoint An endpoint on the local machine to which the socket
|
385
|
+
* acceptor will be bound.
|
386
|
+
*
|
387
|
+
* @param ec Set to indicate what error occurred, if any.
|
388
|
+
*
|
389
|
+
* @par Example
|
390
|
+
* @code
|
391
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
392
|
+
* boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(), 12345);
|
393
|
+
* acceptor.open(endpoint.protocol());
|
394
|
+
* boost::system::error_code ec;
|
395
|
+
* acceptor.bind(endpoint, ec);
|
396
|
+
* if (ec)
|
397
|
+
* {
|
398
|
+
* // An error occurred.
|
399
|
+
* }
|
400
|
+
* @endcode
|
401
|
+
*/
|
402
|
+
boost::system::error_code bind(const endpoint_type& endpoint,
|
403
|
+
boost::system::error_code& ec)
|
404
|
+
{
|
405
|
+
return this->get_service().bind(this->get_implementation(), endpoint, ec);
|
406
|
+
}
|
407
|
+
|
408
|
+
/// Place the acceptor into the state where it will listen for new
|
409
|
+
/// connections.
|
410
|
+
/**
|
411
|
+
* This function puts the socket acceptor into the state where it may accept
|
412
|
+
* new connections.
|
413
|
+
*
|
414
|
+
* @param backlog The maximum length of the queue of pending connections.
|
415
|
+
*
|
416
|
+
* @throws boost::system::system_error Thrown on failure.
|
417
|
+
*/
|
418
|
+
void listen(int backlog = socket_base::max_connections)
|
419
|
+
{
|
420
|
+
boost::system::error_code ec;
|
421
|
+
this->get_service().listen(this->get_implementation(), backlog, ec);
|
422
|
+
boost::asio::detail::throw_error(ec, "listen");
|
423
|
+
}
|
424
|
+
|
425
|
+
/// Place the acceptor into the state where it will listen for new
|
426
|
+
/// connections.
|
427
|
+
/**
|
428
|
+
* This function puts the socket acceptor into the state where it may accept
|
429
|
+
* new connections.
|
430
|
+
*
|
431
|
+
* @param backlog The maximum length of the queue of pending connections.
|
432
|
+
*
|
433
|
+
* @param ec Set to indicate what error occurred, if any.
|
434
|
+
*
|
435
|
+
* @par Example
|
436
|
+
* @code
|
437
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
438
|
+
* ...
|
439
|
+
* boost::system::error_code ec;
|
440
|
+
* acceptor.listen(boost::asio::socket_base::max_connections, ec);
|
441
|
+
* if (ec)
|
442
|
+
* {
|
443
|
+
* // An error occurred.
|
444
|
+
* }
|
445
|
+
* @endcode
|
446
|
+
*/
|
447
|
+
boost::system::error_code listen(int backlog, boost::system::error_code& ec)
|
448
|
+
{
|
449
|
+
return this->get_service().listen(this->get_implementation(), backlog, ec);
|
450
|
+
}
|
451
|
+
|
452
|
+
/// Close the acceptor.
|
453
|
+
/**
|
454
|
+
* This function is used to close the acceptor. Any asynchronous accept
|
455
|
+
* operations will be cancelled immediately.
|
456
|
+
*
|
457
|
+
* A subsequent call to open() is required before the acceptor can again be
|
458
|
+
* used to again perform socket accept operations.
|
459
|
+
*
|
460
|
+
* @throws boost::system::system_error Thrown on failure.
|
461
|
+
*/
|
462
|
+
void close()
|
463
|
+
{
|
464
|
+
boost::system::error_code ec;
|
465
|
+
this->get_service().close(this->get_implementation(), ec);
|
466
|
+
boost::asio::detail::throw_error(ec, "close");
|
467
|
+
}
|
468
|
+
|
469
|
+
/// Close the acceptor.
|
470
|
+
/**
|
471
|
+
* This function is used to close the acceptor. Any asynchronous accept
|
472
|
+
* operations will be cancelled immediately.
|
473
|
+
*
|
474
|
+
* A subsequent call to open() is required before the acceptor can again be
|
475
|
+
* used to again perform socket accept operations.
|
476
|
+
*
|
477
|
+
* @param ec Set to indicate what error occurred, if any.
|
478
|
+
*
|
479
|
+
* @par Example
|
480
|
+
* @code
|
481
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
482
|
+
* ...
|
483
|
+
* boost::system::error_code ec;
|
484
|
+
* acceptor.close(ec);
|
485
|
+
* if (ec)
|
486
|
+
* {
|
487
|
+
* // An error occurred.
|
488
|
+
* }
|
489
|
+
* @endcode
|
490
|
+
*/
|
491
|
+
boost::system::error_code close(boost::system::error_code& ec)
|
492
|
+
{
|
493
|
+
return this->get_service().close(this->get_implementation(), ec);
|
494
|
+
}
|
495
|
+
|
496
|
+
/// (Deprecated: Use native_handle().) Get the native acceptor representation.
|
497
|
+
/**
|
498
|
+
* This function may be used to obtain the underlying representation of the
|
499
|
+
* acceptor. This is intended to allow access to native acceptor functionality
|
500
|
+
* that is not otherwise provided.
|
501
|
+
*/
|
502
|
+
native_type native()
|
503
|
+
{
|
504
|
+
return this->get_service().native_handle(this->get_implementation());
|
505
|
+
}
|
506
|
+
|
507
|
+
/// Get the native acceptor representation.
|
508
|
+
/**
|
509
|
+
* This function may be used to obtain the underlying representation of the
|
510
|
+
* acceptor. This is intended to allow access to native acceptor functionality
|
511
|
+
* that is not otherwise provided.
|
512
|
+
*/
|
513
|
+
native_handle_type native_handle()
|
514
|
+
{
|
515
|
+
return this->get_service().native_handle(this->get_implementation());
|
516
|
+
}
|
517
|
+
|
518
|
+
/// Cancel all asynchronous operations associated with the acceptor.
|
519
|
+
/**
|
520
|
+
* This function causes all outstanding asynchronous connect, send and receive
|
521
|
+
* operations to finish immediately, and the handlers for cancelled operations
|
522
|
+
* will be passed the boost::asio::error::operation_aborted error.
|
523
|
+
*
|
524
|
+
* @throws boost::system::system_error Thrown on failure.
|
525
|
+
*/
|
526
|
+
void cancel()
|
527
|
+
{
|
528
|
+
boost::system::error_code ec;
|
529
|
+
this->get_service().cancel(this->get_implementation(), ec);
|
530
|
+
boost::asio::detail::throw_error(ec, "cancel");
|
531
|
+
}
|
532
|
+
|
533
|
+
/// Cancel all asynchronous operations associated with the acceptor.
|
534
|
+
/**
|
535
|
+
* This function causes all outstanding asynchronous connect, send and receive
|
536
|
+
* operations to finish immediately, and the handlers for cancelled operations
|
537
|
+
* will be passed the boost::asio::error::operation_aborted error.
|
538
|
+
*
|
539
|
+
* @param ec Set to indicate what error occurred, if any.
|
540
|
+
*/
|
541
|
+
boost::system::error_code cancel(boost::system::error_code& ec)
|
542
|
+
{
|
543
|
+
return this->get_service().cancel(this->get_implementation(), ec);
|
544
|
+
}
|
545
|
+
|
546
|
+
/// Set an option on the acceptor.
|
547
|
+
/**
|
548
|
+
* This function is used to set an option on the acceptor.
|
549
|
+
*
|
550
|
+
* @param option The new option value to be set on the acceptor.
|
551
|
+
*
|
552
|
+
* @throws boost::system::system_error Thrown on failure.
|
553
|
+
*
|
554
|
+
* @sa SettableSocketOption @n
|
555
|
+
* boost::asio::socket_base::reuse_address
|
556
|
+
* boost::asio::socket_base::enable_connection_aborted
|
557
|
+
*
|
558
|
+
* @par Example
|
559
|
+
* Setting the SOL_SOCKET/SO_REUSEADDR option:
|
560
|
+
* @code
|
561
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
562
|
+
* ...
|
563
|
+
* boost::asio::ip::tcp::acceptor::reuse_address option(true);
|
564
|
+
* acceptor.set_option(option);
|
565
|
+
* @endcode
|
566
|
+
*/
|
567
|
+
template <typename SettableSocketOption>
|
568
|
+
void set_option(const SettableSocketOption& option)
|
569
|
+
{
|
570
|
+
boost::system::error_code ec;
|
571
|
+
this->get_service().set_option(this->get_implementation(), option, ec);
|
572
|
+
boost::asio::detail::throw_error(ec, "set_option");
|
573
|
+
}
|
574
|
+
|
575
|
+
/// Set an option on the acceptor.
|
576
|
+
/**
|
577
|
+
* This function is used to set an option on the acceptor.
|
578
|
+
*
|
579
|
+
* @param option The new option value to be set on the acceptor.
|
580
|
+
*
|
581
|
+
* @param ec Set to indicate what error occurred, if any.
|
582
|
+
*
|
583
|
+
* @sa SettableSocketOption @n
|
584
|
+
* boost::asio::socket_base::reuse_address
|
585
|
+
* boost::asio::socket_base::enable_connection_aborted
|
586
|
+
*
|
587
|
+
* @par Example
|
588
|
+
* Setting the SOL_SOCKET/SO_REUSEADDR option:
|
589
|
+
* @code
|
590
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
591
|
+
* ...
|
592
|
+
* boost::asio::ip::tcp::acceptor::reuse_address option(true);
|
593
|
+
* boost::system::error_code ec;
|
594
|
+
* acceptor.set_option(option, ec);
|
595
|
+
* if (ec)
|
596
|
+
* {
|
597
|
+
* // An error occurred.
|
598
|
+
* }
|
599
|
+
* @endcode
|
600
|
+
*/
|
601
|
+
template <typename SettableSocketOption>
|
602
|
+
boost::system::error_code set_option(const SettableSocketOption& option,
|
603
|
+
boost::system::error_code& ec)
|
604
|
+
{
|
605
|
+
return this->get_service().set_option(
|
606
|
+
this->get_implementation(), option, ec);
|
607
|
+
}
|
608
|
+
|
609
|
+
/// Get an option from the acceptor.
|
610
|
+
/**
|
611
|
+
* This function is used to get the current value of an option on the
|
612
|
+
* acceptor.
|
613
|
+
*
|
614
|
+
* @param option The option value to be obtained from the acceptor.
|
615
|
+
*
|
616
|
+
* @throws boost::system::system_error Thrown on failure.
|
617
|
+
*
|
618
|
+
* @sa GettableSocketOption @n
|
619
|
+
* boost::asio::socket_base::reuse_address
|
620
|
+
*
|
621
|
+
* @par Example
|
622
|
+
* Getting the value of the SOL_SOCKET/SO_REUSEADDR option:
|
623
|
+
* @code
|
624
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
625
|
+
* ...
|
626
|
+
* boost::asio::ip::tcp::acceptor::reuse_address option;
|
627
|
+
* acceptor.get_option(option);
|
628
|
+
* bool is_set = option.get();
|
629
|
+
* @endcode
|
630
|
+
*/
|
631
|
+
template <typename GettableSocketOption>
|
632
|
+
void get_option(GettableSocketOption& option)
|
633
|
+
{
|
634
|
+
boost::system::error_code ec;
|
635
|
+
this->get_service().get_option(this->get_implementation(), option, ec);
|
636
|
+
boost::asio::detail::throw_error(ec, "get_option");
|
637
|
+
}
|
638
|
+
|
639
|
+
/// Get an option from the acceptor.
|
640
|
+
/**
|
641
|
+
* This function is used to get the current value of an option on the
|
642
|
+
* acceptor.
|
643
|
+
*
|
644
|
+
* @param option The option value to be obtained from the acceptor.
|
645
|
+
*
|
646
|
+
* @param ec Set to indicate what error occurred, if any.
|
647
|
+
*
|
648
|
+
* @sa GettableSocketOption @n
|
649
|
+
* boost::asio::socket_base::reuse_address
|
650
|
+
*
|
651
|
+
* @par Example
|
652
|
+
* Getting the value of the SOL_SOCKET/SO_REUSEADDR option:
|
653
|
+
* @code
|
654
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
655
|
+
* ...
|
656
|
+
* boost::asio::ip::tcp::acceptor::reuse_address option;
|
657
|
+
* boost::system::error_code ec;
|
658
|
+
* acceptor.get_option(option, ec);
|
659
|
+
* if (ec)
|
660
|
+
* {
|
661
|
+
* // An error occurred.
|
662
|
+
* }
|
663
|
+
* bool is_set = option.get();
|
664
|
+
* @endcode
|
665
|
+
*/
|
666
|
+
template <typename GettableSocketOption>
|
667
|
+
boost::system::error_code get_option(GettableSocketOption& option,
|
668
|
+
boost::system::error_code& ec)
|
669
|
+
{
|
670
|
+
return this->get_service().get_option(
|
671
|
+
this->get_implementation(), option, ec);
|
672
|
+
}
|
673
|
+
|
674
|
+
/// Perform an IO control command on the acceptor.
|
675
|
+
/**
|
676
|
+
* This function is used to execute an IO control command on the acceptor.
|
677
|
+
*
|
678
|
+
* @param command The IO control command to be performed on the acceptor.
|
679
|
+
*
|
680
|
+
* @throws boost::system::system_error Thrown on failure.
|
681
|
+
*
|
682
|
+
* @sa IoControlCommand @n
|
683
|
+
* boost::asio::socket_base::non_blocking_io
|
684
|
+
*
|
685
|
+
* @par Example
|
686
|
+
* Getting the number of bytes ready to read:
|
687
|
+
* @code
|
688
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
689
|
+
* ...
|
690
|
+
* boost::asio::ip::tcp::acceptor::non_blocking_io command(true);
|
691
|
+
* socket.io_control(command);
|
692
|
+
* @endcode
|
693
|
+
*/
|
694
|
+
template <typename IoControlCommand>
|
695
|
+
void io_control(IoControlCommand& command)
|
696
|
+
{
|
697
|
+
boost::system::error_code ec;
|
698
|
+
this->get_service().io_control(this->get_implementation(), command, ec);
|
699
|
+
boost::asio::detail::throw_error(ec, "io_control");
|
700
|
+
}
|
701
|
+
|
702
|
+
/// Perform an IO control command on the acceptor.
|
703
|
+
/**
|
704
|
+
* This function is used to execute an IO control command on the acceptor.
|
705
|
+
*
|
706
|
+
* @param command The IO control command to be performed on the acceptor.
|
707
|
+
*
|
708
|
+
* @param ec Set to indicate what error occurred, if any.
|
709
|
+
*
|
710
|
+
* @sa IoControlCommand @n
|
711
|
+
* boost::asio::socket_base::non_blocking_io
|
712
|
+
*
|
713
|
+
* @par Example
|
714
|
+
* Getting the number of bytes ready to read:
|
715
|
+
* @code
|
716
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
717
|
+
* ...
|
718
|
+
* boost::asio::ip::tcp::acceptor::non_blocking_io command(true);
|
719
|
+
* boost::system::error_code ec;
|
720
|
+
* socket.io_control(command, ec);
|
721
|
+
* if (ec)
|
722
|
+
* {
|
723
|
+
* // An error occurred.
|
724
|
+
* }
|
725
|
+
* @endcode
|
726
|
+
*/
|
727
|
+
template <typename IoControlCommand>
|
728
|
+
boost::system::error_code io_control(IoControlCommand& command,
|
729
|
+
boost::system::error_code& ec)
|
730
|
+
{
|
731
|
+
return this->get_service().io_control(
|
732
|
+
this->get_implementation(), command, ec);
|
733
|
+
}
|
734
|
+
|
735
|
+
/// Gets the non-blocking mode of the acceptor.
|
736
|
+
/**
|
737
|
+
* @returns @c true if the acceptor's synchronous operations will fail with
|
738
|
+
* boost::asio::error::would_block if they are unable to perform the requested
|
739
|
+
* operation immediately. If @c false, synchronous operations will block
|
740
|
+
* until complete.
|
741
|
+
*
|
742
|
+
* @note The non-blocking mode has no effect on the behaviour of asynchronous
|
743
|
+
* operations. Asynchronous operations will never fail with the error
|
744
|
+
* boost::asio::error::would_block.
|
745
|
+
*/
|
746
|
+
bool non_blocking() const
|
747
|
+
{
|
748
|
+
return this->get_service().non_blocking(this->get_implementation());
|
749
|
+
}
|
750
|
+
|
751
|
+
/// Sets the non-blocking mode of the acceptor.
|
752
|
+
/**
|
753
|
+
* @param mode If @c true, the acceptor's synchronous operations will fail
|
754
|
+
* with boost::asio::error::would_block if they are unable to perform the
|
755
|
+
* requested operation immediately. If @c false, synchronous operations will
|
756
|
+
* block until complete.
|
757
|
+
*
|
758
|
+
* @throws boost::system::system_error Thrown on failure.
|
759
|
+
*
|
760
|
+
* @note The non-blocking mode has no effect on the behaviour of asynchronous
|
761
|
+
* operations. Asynchronous operations will never fail with the error
|
762
|
+
* boost::asio::error::would_block.
|
763
|
+
*/
|
764
|
+
void non_blocking(bool mode)
|
765
|
+
{
|
766
|
+
boost::system::error_code ec;
|
767
|
+
this->get_service().non_blocking(this->get_implementation(), mode, ec);
|
768
|
+
boost::asio::detail::throw_error(ec, "non_blocking");
|
769
|
+
}
|
770
|
+
|
771
|
+
/// Sets the non-blocking mode of the acceptor.
|
772
|
+
/**
|
773
|
+
* @param mode If @c true, the acceptor's synchronous operations will fail
|
774
|
+
* with boost::asio::error::would_block if they are unable to perform the
|
775
|
+
* requested operation immediately. If @c false, synchronous operations will
|
776
|
+
* block until complete.
|
777
|
+
*
|
778
|
+
* @param ec Set to indicate what error occurred, if any.
|
779
|
+
*
|
780
|
+
* @note The non-blocking mode has no effect on the behaviour of asynchronous
|
781
|
+
* operations. Asynchronous operations will never fail with the error
|
782
|
+
* boost::asio::error::would_block.
|
783
|
+
*/
|
784
|
+
boost::system::error_code non_blocking(
|
785
|
+
bool mode, boost::system::error_code& ec)
|
786
|
+
{
|
787
|
+
return this->get_service().non_blocking(
|
788
|
+
this->get_implementation(), mode, ec);
|
789
|
+
}
|
790
|
+
|
791
|
+
/// Gets the non-blocking mode of the native acceptor implementation.
|
792
|
+
/**
|
793
|
+
* This function is used to retrieve the non-blocking mode of the underlying
|
794
|
+
* native acceptor. This mode has no effect on the behaviour of the acceptor
|
795
|
+
* object's synchronous operations.
|
796
|
+
*
|
797
|
+
* @returns @c true if the underlying acceptor is in non-blocking mode and
|
798
|
+
* direct system calls may fail with boost::asio::error::would_block (or the
|
799
|
+
* equivalent system error).
|
800
|
+
*
|
801
|
+
* @note The current non-blocking mode is cached by the acceptor object.
|
802
|
+
* Consequently, the return value may be incorrect if the non-blocking mode
|
803
|
+
* was set directly on the native acceptor.
|
804
|
+
*/
|
805
|
+
bool native_non_blocking() const
|
806
|
+
{
|
807
|
+
return this->get_service().native_non_blocking(this->get_implementation());
|
808
|
+
}
|
809
|
+
|
810
|
+
/// Sets the non-blocking mode of the native acceptor implementation.
|
811
|
+
/**
|
812
|
+
* This function is used to modify the non-blocking mode of the underlying
|
813
|
+
* native acceptor. It has no effect on the behaviour of the acceptor object's
|
814
|
+
* synchronous operations.
|
815
|
+
*
|
816
|
+
* @param mode If @c true, the underlying acceptor is put into non-blocking
|
817
|
+
* mode and direct system calls may fail with boost::asio::error::would_block
|
818
|
+
* (or the equivalent system error).
|
819
|
+
*
|
820
|
+
* @throws boost::system::system_error Thrown on failure. If the @c mode is
|
821
|
+
* @c false, but the current value of @c non_blocking() is @c true, this
|
822
|
+
* function fails with boost::asio::error::invalid_argument, as the
|
823
|
+
* combination does not make sense.
|
824
|
+
*/
|
825
|
+
void native_non_blocking(bool mode)
|
826
|
+
{
|
827
|
+
boost::system::error_code ec;
|
828
|
+
this->get_service().native_non_blocking(
|
829
|
+
this->get_implementation(), mode, ec);
|
830
|
+
boost::asio::detail::throw_error(ec, "native_non_blocking");
|
831
|
+
}
|
832
|
+
|
833
|
+
/// Sets the non-blocking mode of the native acceptor implementation.
|
834
|
+
/**
|
835
|
+
* This function is used to modify the non-blocking mode of the underlying
|
836
|
+
* native acceptor. It has no effect on the behaviour of the acceptor object's
|
837
|
+
* synchronous operations.
|
838
|
+
*
|
839
|
+
* @param mode If @c true, the underlying acceptor is put into non-blocking
|
840
|
+
* mode and direct system calls may fail with boost::asio::error::would_block
|
841
|
+
* (or the equivalent system error).
|
842
|
+
*
|
843
|
+
* @param ec Set to indicate what error occurred, if any. If the @c mode is
|
844
|
+
* @c false, but the current value of @c non_blocking() is @c true, this
|
845
|
+
* function fails with boost::asio::error::invalid_argument, as the
|
846
|
+
* combination does not make sense.
|
847
|
+
*/
|
848
|
+
boost::system::error_code native_non_blocking(
|
849
|
+
bool mode, boost::system::error_code& ec)
|
850
|
+
{
|
851
|
+
return this->get_service().native_non_blocking(
|
852
|
+
this->get_implementation(), mode, ec);
|
853
|
+
}
|
854
|
+
|
855
|
+
/// Get the local endpoint of the acceptor.
|
856
|
+
/**
|
857
|
+
* This function is used to obtain the locally bound endpoint of the acceptor.
|
858
|
+
*
|
859
|
+
* @returns An object that represents the local endpoint of the acceptor.
|
860
|
+
*
|
861
|
+
* @throws boost::system::system_error Thrown on failure.
|
862
|
+
*
|
863
|
+
* @par Example
|
864
|
+
* @code
|
865
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
866
|
+
* ...
|
867
|
+
* boost::asio::ip::tcp::endpoint endpoint = acceptor.local_endpoint();
|
868
|
+
* @endcode
|
869
|
+
*/
|
870
|
+
endpoint_type local_endpoint() const
|
871
|
+
{
|
872
|
+
boost::system::error_code ec;
|
873
|
+
endpoint_type ep = this->get_service().local_endpoint(
|
874
|
+
this->get_implementation(), ec);
|
875
|
+
boost::asio::detail::throw_error(ec, "local_endpoint");
|
876
|
+
return ep;
|
877
|
+
}
|
878
|
+
|
879
|
+
/// Get the local endpoint of the acceptor.
|
880
|
+
/**
|
881
|
+
* This function is used to obtain the locally bound endpoint of the acceptor.
|
882
|
+
*
|
883
|
+
* @param ec Set to indicate what error occurred, if any.
|
884
|
+
*
|
885
|
+
* @returns An object that represents the local endpoint of the acceptor.
|
886
|
+
* Returns a default-constructed endpoint object if an error occurred and the
|
887
|
+
* error handler did not throw an exception.
|
888
|
+
*
|
889
|
+
* @par Example
|
890
|
+
* @code
|
891
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
892
|
+
* ...
|
893
|
+
* boost::system::error_code ec;
|
894
|
+
* boost::asio::ip::tcp::endpoint endpoint = acceptor.local_endpoint(ec);
|
895
|
+
* if (ec)
|
896
|
+
* {
|
897
|
+
* // An error occurred.
|
898
|
+
* }
|
899
|
+
* @endcode
|
900
|
+
*/
|
901
|
+
endpoint_type local_endpoint(boost::system::error_code& ec) const
|
902
|
+
{
|
903
|
+
return this->get_service().local_endpoint(this->get_implementation(), ec);
|
904
|
+
}
|
905
|
+
|
906
|
+
/// Accept a new connection.
|
907
|
+
/**
|
908
|
+
* This function is used to accept a new connection from a peer into the
|
909
|
+
* given socket. The function call will block until a new connection has been
|
910
|
+
* accepted successfully or an error occurs.
|
911
|
+
*
|
912
|
+
* @param peer The socket into which the new connection will be accepted.
|
913
|
+
*
|
914
|
+
* @throws boost::system::system_error Thrown on failure.
|
915
|
+
*
|
916
|
+
* @par Example
|
917
|
+
* @code
|
918
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
919
|
+
* ...
|
920
|
+
* boost::asio::ip::tcp::socket socket(io_service);
|
921
|
+
* acceptor.accept(socket);
|
922
|
+
* @endcode
|
923
|
+
*/
|
924
|
+
template <typename Protocol1, typename SocketService>
|
925
|
+
void accept(basic_socket<Protocol1, SocketService>& peer,
|
926
|
+
typename enable_if<is_convertible<Protocol, Protocol1>::value>::type* = 0)
|
927
|
+
{
|
928
|
+
boost::system::error_code ec;
|
929
|
+
this->get_service().accept(this->get_implementation(),
|
930
|
+
peer, static_cast<endpoint_type*>(0), ec);
|
931
|
+
boost::asio::detail::throw_error(ec, "accept");
|
932
|
+
}
|
933
|
+
|
934
|
+
/// Accept a new connection.
|
935
|
+
/**
|
936
|
+
* This function is used to accept a new connection from a peer into the
|
937
|
+
* given socket. The function call will block until a new connection has been
|
938
|
+
* accepted successfully or an error occurs.
|
939
|
+
*
|
940
|
+
* @param peer The socket into which the new connection will be accepted.
|
941
|
+
*
|
942
|
+
* @param ec Set to indicate what error occurred, if any.
|
943
|
+
*
|
944
|
+
* @par Example
|
945
|
+
* @code
|
946
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
947
|
+
* ...
|
948
|
+
* boost::asio::ip::tcp::soocket socket(io_service);
|
949
|
+
* boost::system::error_code ec;
|
950
|
+
* acceptor.accept(socket, ec);
|
951
|
+
* if (ec)
|
952
|
+
* {
|
953
|
+
* // An error occurred.
|
954
|
+
* }
|
955
|
+
* @endcode
|
956
|
+
*/
|
957
|
+
template <typename Protocol1, typename SocketService>
|
958
|
+
boost::system::error_code accept(
|
959
|
+
basic_socket<Protocol1, SocketService>& peer,
|
960
|
+
boost::system::error_code& ec,
|
961
|
+
typename enable_if<is_convertible<Protocol, Protocol1>::value>::type* = 0)
|
962
|
+
{
|
963
|
+
return this->get_service().accept(this->get_implementation(),
|
964
|
+
peer, static_cast<endpoint_type*>(0), ec);
|
965
|
+
}
|
966
|
+
|
967
|
+
/// Start an asynchronous accept.
|
968
|
+
/**
|
969
|
+
* This function is used to asynchronously accept a new connection into a
|
970
|
+
* socket. The function call always returns immediately.
|
971
|
+
*
|
972
|
+
* @param peer The socket into which the new connection will be accepted.
|
973
|
+
* Ownership of the peer object is retained by the caller, which must
|
974
|
+
* guarantee that it is valid until the handler is called.
|
975
|
+
*
|
976
|
+
* @param handler The handler to be called when the accept operation
|
977
|
+
* completes. Copies will be made of the handler as required. The function
|
978
|
+
* signature of the handler must be:
|
979
|
+
* @code void handler(
|
980
|
+
* const boost::system::error_code& error // Result of operation.
|
981
|
+
* ); @endcode
|
982
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
983
|
+
* not, the handler will not be invoked from within this function. Invocation
|
984
|
+
* of the handler will be performed in a manner equivalent to using
|
985
|
+
* boost::asio::io_service::post().
|
986
|
+
*
|
987
|
+
* @par Example
|
988
|
+
* @code
|
989
|
+
* void accept_handler(const boost::system::error_code& error)
|
990
|
+
* {
|
991
|
+
* if (!error)
|
992
|
+
* {
|
993
|
+
* // Accept succeeded.
|
994
|
+
* }
|
995
|
+
* }
|
996
|
+
*
|
997
|
+
* ...
|
998
|
+
*
|
999
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
1000
|
+
* ...
|
1001
|
+
* boost::asio::ip::tcp::socket socket(io_service);
|
1002
|
+
* acceptor.async_accept(socket, accept_handler);
|
1003
|
+
* @endcode
|
1004
|
+
*/
|
1005
|
+
template <typename Protocol1, typename SocketService, typename AcceptHandler>
|
1006
|
+
BOOST_ASIO_INITFN_RESULT_TYPE(AcceptHandler,
|
1007
|
+
void (boost::system::error_code))
|
1008
|
+
async_accept(basic_socket<Protocol1, SocketService>& peer,
|
1009
|
+
BOOST_ASIO_MOVE_ARG(AcceptHandler) handler,
|
1010
|
+
typename enable_if<is_convertible<Protocol, Protocol1>::value>::type* = 0)
|
1011
|
+
{
|
1012
|
+
// If you get an error on the following line it means that your handler does
|
1013
|
+
// not meet the documented type requirements for a AcceptHandler.
|
1014
|
+
BOOST_ASIO_ACCEPT_HANDLER_CHECK(AcceptHandler, handler) type_check;
|
1015
|
+
|
1016
|
+
return this->get_service().async_accept(this->get_implementation(),
|
1017
|
+
peer, static_cast<endpoint_type*>(0),
|
1018
|
+
BOOST_ASIO_MOVE_CAST(AcceptHandler)(handler));
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
/// Accept a new connection and obtain the endpoint of the peer
|
1022
|
+
/**
|
1023
|
+
* This function is used to accept a new connection from a peer into the
|
1024
|
+
* given socket, and additionally provide the endpoint of the remote peer.
|
1025
|
+
* The function call will block until a new connection has been accepted
|
1026
|
+
* successfully or an error occurs.
|
1027
|
+
*
|
1028
|
+
* @param peer The socket into which the new connection will be accepted.
|
1029
|
+
*
|
1030
|
+
* @param peer_endpoint An endpoint object which will receive the endpoint of
|
1031
|
+
* the remote peer.
|
1032
|
+
*
|
1033
|
+
* @throws boost::system::system_error Thrown on failure.
|
1034
|
+
*
|
1035
|
+
* @par Example
|
1036
|
+
* @code
|
1037
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
1038
|
+
* ...
|
1039
|
+
* boost::asio::ip::tcp::socket socket(io_service);
|
1040
|
+
* boost::asio::ip::tcp::endpoint endpoint;
|
1041
|
+
* acceptor.accept(socket, endpoint);
|
1042
|
+
* @endcode
|
1043
|
+
*/
|
1044
|
+
template <typename SocketService>
|
1045
|
+
void accept(basic_socket<protocol_type, SocketService>& peer,
|
1046
|
+
endpoint_type& peer_endpoint)
|
1047
|
+
{
|
1048
|
+
boost::system::error_code ec;
|
1049
|
+
this->get_service().accept(this->get_implementation(),
|
1050
|
+
peer, &peer_endpoint, ec);
|
1051
|
+
boost::asio::detail::throw_error(ec, "accept");
|
1052
|
+
}
|
1053
|
+
|
1054
|
+
/// Accept a new connection and obtain the endpoint of the peer
|
1055
|
+
/**
|
1056
|
+
* This function is used to accept a new connection from a peer into the
|
1057
|
+
* given socket, and additionally provide the endpoint of the remote peer.
|
1058
|
+
* The function call will block until a new connection has been accepted
|
1059
|
+
* successfully or an error occurs.
|
1060
|
+
*
|
1061
|
+
* @param peer The socket into which the new connection will be accepted.
|
1062
|
+
*
|
1063
|
+
* @param peer_endpoint An endpoint object which will receive the endpoint of
|
1064
|
+
* the remote peer.
|
1065
|
+
*
|
1066
|
+
* @param ec Set to indicate what error occurred, if any.
|
1067
|
+
*
|
1068
|
+
* @par Example
|
1069
|
+
* @code
|
1070
|
+
* boost::asio::ip::tcp::acceptor acceptor(io_service);
|
1071
|
+
* ...
|
1072
|
+
* boost::asio::ip::tcp::socket socket(io_service);
|
1073
|
+
* boost::asio::ip::tcp::endpoint endpoint;
|
1074
|
+
* boost::system::error_code ec;
|
1075
|
+
* acceptor.accept(socket, endpoint, ec);
|
1076
|
+
* if (ec)
|
1077
|
+
* {
|
1078
|
+
* // An error occurred.
|
1079
|
+
* }
|
1080
|
+
* @endcode
|
1081
|
+
*/
|
1082
|
+
template <typename SocketService>
|
1083
|
+
boost::system::error_code accept(
|
1084
|
+
basic_socket<protocol_type, SocketService>& peer,
|
1085
|
+
endpoint_type& peer_endpoint, boost::system::error_code& ec)
|
1086
|
+
{
|
1087
|
+
return this->get_service().accept(
|
1088
|
+
this->get_implementation(), peer, &peer_endpoint, ec);
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
/// Start an asynchronous accept.
|
1092
|
+
/**
|
1093
|
+
* This function is used to asynchronously accept a new connection into a
|
1094
|
+
* socket, and additionally obtain the endpoint of the remote peer. The
|
1095
|
+
* function call always returns immediately.
|
1096
|
+
*
|
1097
|
+
* @param peer The socket into which the new connection will be accepted.
|
1098
|
+
* Ownership of the peer object is retained by the caller, which must
|
1099
|
+
* guarantee that it is valid until the handler is called.
|
1100
|
+
*
|
1101
|
+
* @param peer_endpoint An endpoint object into which the endpoint of the
|
1102
|
+
* remote peer will be written. Ownership of the peer_endpoint object is
|
1103
|
+
* retained by the caller, which must guarantee that it is valid until the
|
1104
|
+
* handler is called.
|
1105
|
+
*
|
1106
|
+
* @param handler The handler to be called when the accept operation
|
1107
|
+
* completes. Copies will be made of the handler as required. The function
|
1108
|
+
* signature of the handler must be:
|
1109
|
+
* @code void handler(
|
1110
|
+
* const boost::system::error_code& error // Result of operation.
|
1111
|
+
* ); @endcode
|
1112
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
1113
|
+
* not, the handler will not be invoked from within this function. Invocation
|
1114
|
+
* of the handler will be performed in a manner equivalent to using
|
1115
|
+
* boost::asio::io_service::post().
|
1116
|
+
*/
|
1117
|
+
template <typename SocketService, typename AcceptHandler>
|
1118
|
+
BOOST_ASIO_INITFN_RESULT_TYPE(AcceptHandler,
|
1119
|
+
void (boost::system::error_code))
|
1120
|
+
async_accept(basic_socket<protocol_type, SocketService>& peer,
|
1121
|
+
endpoint_type& peer_endpoint, BOOST_ASIO_MOVE_ARG(AcceptHandler) handler)
|
1122
|
+
{
|
1123
|
+
// If you get an error on the following line it means that your handler does
|
1124
|
+
// not meet the documented type requirements for a AcceptHandler.
|
1125
|
+
BOOST_ASIO_ACCEPT_HANDLER_CHECK(AcceptHandler, handler) type_check;
|
1126
|
+
|
1127
|
+
return this->get_service().async_accept(this->get_implementation(), peer,
|
1128
|
+
&peer_endpoint, BOOST_ASIO_MOVE_CAST(AcceptHandler)(handler));
|
1129
|
+
}
|
1130
|
+
};
|
1131
|
+
|
1132
|
+
} // namespace asio
|
1133
|
+
} // namespace boost
|
1134
|
+
|
1135
|
+
#include <boost/asio/detail/pop_options.hpp>
|
1136
|
+
|
1137
|
+
#endif // BOOST_ASIO_BASIC_SOCKET_ACCEPTOR_HPP
|