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,78 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2014, Peter Thorson. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions are met:
|
6
|
+
* * Redistributions of source code must retain the above copyright
|
7
|
+
* notice, this list of conditions and the following disclaimer.
|
8
|
+
* * Redistributions in binary form must reproduce the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer in the
|
10
|
+
* documentation and/or other materials provided with the distribution.
|
11
|
+
* * Neither the name of the WebSocket++ Project nor the
|
12
|
+
* names of its contributors may be used to endorse or promote products
|
13
|
+
* derived from this software without specific prior written permission.
|
14
|
+
*
|
15
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
16
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
17
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
18
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
|
19
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
20
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
21
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
22
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
24
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
*
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef WEBSOCKETPP_PROCESSOR_HYBI07_HPP
|
29
|
+
#define WEBSOCKETPP_PROCESSOR_HYBI07_HPP
|
30
|
+
|
31
|
+
#include <websocketpp/processors/hybi08.hpp>
|
32
|
+
|
33
|
+
#include <string>
|
34
|
+
#include <vector>
|
35
|
+
|
36
|
+
namespace websocketpp {
|
37
|
+
namespace processor {
|
38
|
+
|
39
|
+
/// Processor for Hybi Draft version 07
|
40
|
+
/**
|
41
|
+
* The primary difference between 07 and 08 is a version number.
|
42
|
+
*/
|
43
|
+
template <typename config>
|
44
|
+
class hybi07 : public hybi08<config> {
|
45
|
+
public:
|
46
|
+
typedef typename config::request_type request_type;
|
47
|
+
|
48
|
+
typedef typename config::con_msg_manager_type::ptr msg_manager_ptr;
|
49
|
+
typedef typename config::rng_type rng_type;
|
50
|
+
|
51
|
+
explicit hybi07(bool secure, bool p_is_server, msg_manager_ptr manager, rng_type& rng)
|
52
|
+
: hybi08<config>(secure, p_is_server, manager, rng) {}
|
53
|
+
|
54
|
+
/// Fill in a set of request headers for a client connection request
|
55
|
+
/**
|
56
|
+
* The Hybi 07 processor only implements incoming connections so this will
|
57
|
+
* always return an error.
|
58
|
+
*
|
59
|
+
* @param [out] req Set of headers to fill in
|
60
|
+
* @param [in] uri The uri being connected to
|
61
|
+
* @param [in] subprotocols The list of subprotocols to request
|
62
|
+
*/
|
63
|
+
lib::error_code client_handshake_request(request_type &, uri_ptr,
|
64
|
+
std::vector<std::string> const &) const
|
65
|
+
{
|
66
|
+
return error::make_error_code(error::no_protocol_support);
|
67
|
+
}
|
68
|
+
|
69
|
+
int get_version() const {
|
70
|
+
return 7;
|
71
|
+
}
|
72
|
+
private:
|
73
|
+
};
|
74
|
+
|
75
|
+
} // namespace processor
|
76
|
+
} // namespace websocketpp
|
77
|
+
|
78
|
+
#endif //WEBSOCKETPP_PROCESSOR_HYBI07_HPP
|
@@ -0,0 +1,83 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2014, Peter Thorson. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions are met:
|
6
|
+
* * Redistributions of source code must retain the above copyright
|
7
|
+
* notice, this list of conditions and the following disclaimer.
|
8
|
+
* * Redistributions in binary form must reproduce the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer in the
|
10
|
+
* documentation and/or other materials provided with the distribution.
|
11
|
+
* * Neither the name of the WebSocket++ Project nor the
|
12
|
+
* names of its contributors may be used to endorse or promote products
|
13
|
+
* derived from this software without specific prior written permission.
|
14
|
+
*
|
15
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
16
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
17
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
18
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
|
19
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
20
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
21
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
22
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
24
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
*
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef WEBSOCKETPP_PROCESSOR_HYBI08_HPP
|
29
|
+
#define WEBSOCKETPP_PROCESSOR_HYBI08_HPP
|
30
|
+
|
31
|
+
#include <websocketpp/processors/hybi13.hpp>
|
32
|
+
|
33
|
+
#include <string>
|
34
|
+
#include <vector>
|
35
|
+
|
36
|
+
namespace websocketpp {
|
37
|
+
namespace processor {
|
38
|
+
|
39
|
+
/// Processor for Hybi Draft version 08
|
40
|
+
/**
|
41
|
+
* The primary difference between 08 and 13 is a different origin header name
|
42
|
+
*/
|
43
|
+
template <typename config>
|
44
|
+
class hybi08 : public hybi13<config> {
|
45
|
+
public:
|
46
|
+
typedef hybi08<config> type;
|
47
|
+
typedef typename config::request_type request_type;
|
48
|
+
|
49
|
+
typedef typename config::con_msg_manager_type::ptr msg_manager_ptr;
|
50
|
+
typedef typename config::rng_type rng_type;
|
51
|
+
|
52
|
+
explicit hybi08(bool secure, bool p_is_server, msg_manager_ptr manager, rng_type& rng)
|
53
|
+
: hybi13<config>(secure, p_is_server, manager, rng) {}
|
54
|
+
|
55
|
+
/// Fill in a set of request headers for a client connection request
|
56
|
+
/**
|
57
|
+
* The Hybi 08 processor only implements incoming connections so this will
|
58
|
+
* always return an error.
|
59
|
+
*
|
60
|
+
* @param [out] req Set of headers to fill in
|
61
|
+
* @param [in] uri The uri being connected to
|
62
|
+
* @param [in] subprotocols The list of subprotocols to request
|
63
|
+
*/
|
64
|
+
lib::error_code client_handshake_request(request_type &, uri_ptr,
|
65
|
+
std::vector<std::string> const &) const
|
66
|
+
{
|
67
|
+
return error::make_error_code(error::no_protocol_support);
|
68
|
+
}
|
69
|
+
|
70
|
+
int get_version() const {
|
71
|
+
return 8;
|
72
|
+
}
|
73
|
+
|
74
|
+
std::string const & get_origin(request_type const & r) const {
|
75
|
+
return r.get_header("Sec-WebSocket-Origin");
|
76
|
+
}
|
77
|
+
private:
|
78
|
+
};
|
79
|
+
|
80
|
+
} // namespace processor
|
81
|
+
} // namespace websocketpp
|
82
|
+
|
83
|
+
#endif //WEBSOCKETPP_PROCESSOR_HYBI08_HPP
|
@@ -0,0 +1,1056 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2015, Peter Thorson. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions are met:
|
6
|
+
* * Redistributions of source code must retain the above copyright
|
7
|
+
* notice, this list of conditions and the following disclaimer.
|
8
|
+
* * Redistributions in binary form must reproduce the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer in the
|
10
|
+
* documentation and/or other materials provided with the distribution.
|
11
|
+
* * Neither the name of the WebSocket++ Project nor the
|
12
|
+
* names of its contributors may be used to endorse or promote products
|
13
|
+
* derived from this software without specific prior written permission.
|
14
|
+
*
|
15
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
16
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
17
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
18
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
|
19
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
20
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
21
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
22
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
24
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
*
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef WEBSOCKETPP_PROCESSOR_HYBI13_HPP
|
29
|
+
#define WEBSOCKETPP_PROCESSOR_HYBI13_HPP
|
30
|
+
|
31
|
+
#include <websocketpp/processors/processor.hpp>
|
32
|
+
|
33
|
+
#include <websocketpp/frame.hpp>
|
34
|
+
#include <websocketpp/http/constants.hpp>
|
35
|
+
|
36
|
+
#include <websocketpp/utf8_validator.hpp>
|
37
|
+
#include <websocketpp/sha1/sha1.hpp>
|
38
|
+
#include <websocketpp/base64/base64.hpp>
|
39
|
+
|
40
|
+
#include <websocketpp/common/network.hpp>
|
41
|
+
#include <websocketpp/common/platforms.hpp>
|
42
|
+
|
43
|
+
#include <algorithm>
|
44
|
+
#include <cassert>
|
45
|
+
#include <string>
|
46
|
+
#include <vector>
|
47
|
+
#include <utility>
|
48
|
+
|
49
|
+
namespace websocketpp {
|
50
|
+
namespace processor {
|
51
|
+
|
52
|
+
/// Processor for Hybi version 13 (RFC6455)
|
53
|
+
template <typename config>
|
54
|
+
class hybi13 : public processor<config> {
|
55
|
+
public:
|
56
|
+
typedef processor<config> base;
|
57
|
+
|
58
|
+
typedef typename config::request_type request_type;
|
59
|
+
typedef typename config::response_type response_type;
|
60
|
+
|
61
|
+
typedef typename config::message_type message_type;
|
62
|
+
typedef typename message_type::ptr message_ptr;
|
63
|
+
|
64
|
+
typedef typename config::con_msg_manager_type msg_manager_type;
|
65
|
+
typedef typename msg_manager_type::ptr msg_manager_ptr;
|
66
|
+
typedef typename config::rng_type rng_type;
|
67
|
+
|
68
|
+
typedef typename config::permessage_deflate_type permessage_deflate_type;
|
69
|
+
|
70
|
+
typedef std::pair<lib::error_code,std::string> err_str_pair;
|
71
|
+
|
72
|
+
explicit hybi13(bool secure, bool p_is_server, msg_manager_ptr manager, rng_type& rng)
|
73
|
+
: processor<config>(secure, p_is_server)
|
74
|
+
, m_msg_manager(manager)
|
75
|
+
, m_rng(rng)
|
76
|
+
{
|
77
|
+
reset_headers();
|
78
|
+
}
|
79
|
+
|
80
|
+
int get_version() const {
|
81
|
+
return 13;
|
82
|
+
}
|
83
|
+
|
84
|
+
bool has_permessage_deflate() const {
|
85
|
+
return m_permessage_deflate.is_implemented();
|
86
|
+
}
|
87
|
+
|
88
|
+
err_str_pair negotiate_extensions(request_type const & request) {
|
89
|
+
return negotiate_extensions_helper(request);
|
90
|
+
}
|
91
|
+
|
92
|
+
err_str_pair negotiate_extensions(response_type const & response) {
|
93
|
+
return negotiate_extensions_helper(response);
|
94
|
+
}
|
95
|
+
|
96
|
+
/// Extension negotiation helper function
|
97
|
+
/**
|
98
|
+
* This exists mostly because the code for requests and responses is
|
99
|
+
* identical and I can't have virtual template methods.
|
100
|
+
*/
|
101
|
+
template <typename header_type>
|
102
|
+
err_str_pair negotiate_extensions_helper(header_type const & header) {
|
103
|
+
err_str_pair ret;
|
104
|
+
|
105
|
+
// Respect blanket disabling of all extensions and don't even parse
|
106
|
+
// the extension header
|
107
|
+
if (!config::enable_extensions) {
|
108
|
+
ret.first = make_error_code(error::extensions_disabled);
|
109
|
+
return ret;
|
110
|
+
}
|
111
|
+
|
112
|
+
http::parameter_list p;
|
113
|
+
|
114
|
+
bool error = header.get_header_as_plist("Sec-WebSocket-Extensions",p);
|
115
|
+
|
116
|
+
if (error) {
|
117
|
+
ret.first = make_error_code(error::extension_parse_error);
|
118
|
+
return ret;
|
119
|
+
}
|
120
|
+
|
121
|
+
// If there are no extensions parsed then we are done!
|
122
|
+
if (p.size() == 0) {
|
123
|
+
return ret;
|
124
|
+
}
|
125
|
+
|
126
|
+
http::parameter_list::const_iterator it;
|
127
|
+
|
128
|
+
if (m_permessage_deflate.is_implemented()) {
|
129
|
+
err_str_pair neg_ret;
|
130
|
+
for (it = p.begin(); it != p.end(); ++it) {
|
131
|
+
// look through each extension, if the key is permessage-deflate
|
132
|
+
if (it->first == "permessage-deflate") {
|
133
|
+
// if we have already successfully negotiated this extension
|
134
|
+
// then skip any other requests to negotiate the same one
|
135
|
+
// with different parameters
|
136
|
+
if (m_permessage_deflate.is_enabled()) {
|
137
|
+
continue;
|
138
|
+
}
|
139
|
+
|
140
|
+
|
141
|
+
neg_ret = m_permessage_deflate.negotiate(it->second);
|
142
|
+
|
143
|
+
if (neg_ret.first) {
|
144
|
+
// Figure out if this is an error that should halt all
|
145
|
+
// extension negotiations or simply cause negotiation of
|
146
|
+
// this specific extension to fail.
|
147
|
+
//std::cout << "permessage-compress negotiation failed: "
|
148
|
+
// << neg_ret.first.message() << std::endl;
|
149
|
+
} else {
|
150
|
+
// Note: this list will need commas if WebSocket++ ever
|
151
|
+
// supports more than one extension
|
152
|
+
ret.second += neg_ret.second;
|
153
|
+
m_permessage_deflate.init(base::m_server);
|
154
|
+
continue;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
return ret;
|
161
|
+
}
|
162
|
+
|
163
|
+
lib::error_code validate_handshake(request_type const & r) const {
|
164
|
+
if (r.get_method() != "GET") {
|
165
|
+
return make_error_code(error::invalid_http_method);
|
166
|
+
}
|
167
|
+
|
168
|
+
if (r.get_version() != "HTTP/1.1") {
|
169
|
+
return make_error_code(error::invalid_http_version);
|
170
|
+
}
|
171
|
+
|
172
|
+
// required headers
|
173
|
+
// Host is required by HTTP/1.1
|
174
|
+
// Connection is required by is_websocket_handshake
|
175
|
+
// Upgrade is required by is_websocket_handshake
|
176
|
+
if (r.get_header("Sec-WebSocket-Key").empty()) {
|
177
|
+
return make_error_code(error::missing_required_header);
|
178
|
+
}
|
179
|
+
|
180
|
+
return lib::error_code();
|
181
|
+
}
|
182
|
+
|
183
|
+
/* TODO: the 'subprotocol' parameter may need to be expanded into a more
|
184
|
+
* generic struct if other user input parameters to the processed handshake
|
185
|
+
* are found.
|
186
|
+
*/
|
187
|
+
lib::error_code process_handshake(request_type const & request,
|
188
|
+
std::string const & subprotocol, response_type & response) const
|
189
|
+
{
|
190
|
+
std::string server_key = request.get_header("Sec-WebSocket-Key");
|
191
|
+
|
192
|
+
lib::error_code ec = process_handshake_key(server_key);
|
193
|
+
|
194
|
+
if (ec) {
|
195
|
+
return ec;
|
196
|
+
}
|
197
|
+
|
198
|
+
response.replace_header("Sec-WebSocket-Accept",server_key);
|
199
|
+
response.append_header("Upgrade",constants::upgrade_token);
|
200
|
+
response.append_header("Connection",constants::connection_token);
|
201
|
+
|
202
|
+
if (!subprotocol.empty()) {
|
203
|
+
response.replace_header("Sec-WebSocket-Protocol",subprotocol);
|
204
|
+
}
|
205
|
+
|
206
|
+
return lib::error_code();
|
207
|
+
}
|
208
|
+
|
209
|
+
/// Fill in a set of request headers for a client connection request
|
210
|
+
/**
|
211
|
+
* @param [out] req Set of headers to fill in
|
212
|
+
* @param [in] uri The uri being connected to
|
213
|
+
* @param [in] subprotocols The list of subprotocols to request
|
214
|
+
*/
|
215
|
+
lib::error_code client_handshake_request(request_type & req, uri_ptr
|
216
|
+
uri, std::vector<std::string> const & subprotocols) const
|
217
|
+
{
|
218
|
+
req.set_method("GET");
|
219
|
+
req.set_uri(uri->get_resource());
|
220
|
+
req.set_version("HTTP/1.1");
|
221
|
+
|
222
|
+
req.append_header("Upgrade","websocket");
|
223
|
+
req.append_header("Connection","Upgrade");
|
224
|
+
req.replace_header("Sec-WebSocket-Version","13");
|
225
|
+
req.replace_header("Host",uri->get_host_port());
|
226
|
+
|
227
|
+
if (!subprotocols.empty()) {
|
228
|
+
std::ostringstream result;
|
229
|
+
std::vector<std::string>::const_iterator it = subprotocols.begin();
|
230
|
+
result << *it++;
|
231
|
+
while (it != subprotocols.end()) {
|
232
|
+
result << ", " << *it++;
|
233
|
+
}
|
234
|
+
|
235
|
+
req.replace_header("Sec-WebSocket-Protocol",result.str());
|
236
|
+
}
|
237
|
+
|
238
|
+
// Generate handshake key
|
239
|
+
frame::uint32_converter conv;
|
240
|
+
unsigned char raw_key[16];
|
241
|
+
|
242
|
+
for (int i = 0; i < 4; i++) {
|
243
|
+
conv.i = m_rng();
|
244
|
+
std::copy(conv.c,conv.c+4,&raw_key[i*4]);
|
245
|
+
}
|
246
|
+
|
247
|
+
req.replace_header("Sec-WebSocket-Key",base64_encode(raw_key, 16));
|
248
|
+
|
249
|
+
if (m_permessage_deflate.is_implemented()) {
|
250
|
+
std::string offer = m_permessage_deflate.generate_offer();
|
251
|
+
if (!offer.empty()) {
|
252
|
+
req.replace_header("Sec-WebSocket-Extensions",offer);
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
return lib::error_code();
|
257
|
+
}
|
258
|
+
|
259
|
+
/// Validate the server's response to an outgoing handshake request
|
260
|
+
/**
|
261
|
+
* @param req The original request sent
|
262
|
+
* @param res The reponse to generate
|
263
|
+
* @return An error code, 0 on success, non-zero for other errors
|
264
|
+
*/
|
265
|
+
lib::error_code validate_server_handshake_response(request_type const & req,
|
266
|
+
response_type& res) const
|
267
|
+
{
|
268
|
+
// A valid response has an HTTP 101 switching protocols code
|
269
|
+
if (res.get_status_code() != http::status_code::switching_protocols) {
|
270
|
+
return error::make_error_code(error::invalid_http_status);
|
271
|
+
}
|
272
|
+
|
273
|
+
// And the upgrade token in an upgrade header
|
274
|
+
std::string const & upgrade_header = res.get_header("Upgrade");
|
275
|
+
if (utility::ci_find_substr(upgrade_header, constants::upgrade_token,
|
276
|
+
sizeof(constants::upgrade_token)-1) == upgrade_header.end())
|
277
|
+
{
|
278
|
+
return error::make_error_code(error::missing_required_header);
|
279
|
+
}
|
280
|
+
|
281
|
+
// And the websocket token in the connection header
|
282
|
+
std::string const & con_header = res.get_header("Connection");
|
283
|
+
if (utility::ci_find_substr(con_header, constants::connection_token,
|
284
|
+
sizeof(constants::connection_token)-1) == con_header.end())
|
285
|
+
{
|
286
|
+
return error::make_error_code(error::missing_required_header);
|
287
|
+
}
|
288
|
+
|
289
|
+
// And has a valid Sec-WebSocket-Accept value
|
290
|
+
std::string key = req.get_header("Sec-WebSocket-Key");
|
291
|
+
lib::error_code ec = process_handshake_key(key);
|
292
|
+
|
293
|
+
if (ec || key != res.get_header("Sec-WebSocket-Accept")) {
|
294
|
+
return error::make_error_code(error::missing_required_header);
|
295
|
+
}
|
296
|
+
|
297
|
+
// check extensions
|
298
|
+
|
299
|
+
return lib::error_code();
|
300
|
+
}
|
301
|
+
|
302
|
+
std::string get_raw(response_type const & res) const {
|
303
|
+
return res.raw();
|
304
|
+
}
|
305
|
+
|
306
|
+
std::string const & get_origin(request_type const & r) const {
|
307
|
+
return r.get_header("Origin");
|
308
|
+
}
|
309
|
+
|
310
|
+
lib::error_code extract_subprotocols(request_type const & req,
|
311
|
+
std::vector<std::string> & subprotocol_list)
|
312
|
+
{
|
313
|
+
if (!req.get_header("Sec-WebSocket-Protocol").empty()) {
|
314
|
+
http::parameter_list p;
|
315
|
+
|
316
|
+
if (!req.get_header_as_plist("Sec-WebSocket-Protocol",p)) {
|
317
|
+
http::parameter_list::const_iterator it;
|
318
|
+
|
319
|
+
for (it = p.begin(); it != p.end(); ++it) {
|
320
|
+
subprotocol_list.push_back(it->first);
|
321
|
+
}
|
322
|
+
} else {
|
323
|
+
return error::make_error_code(error::subprotocol_parse_error);
|
324
|
+
}
|
325
|
+
}
|
326
|
+
return lib::error_code();
|
327
|
+
}
|
328
|
+
|
329
|
+
uri_ptr get_uri(request_type const & request) const {
|
330
|
+
return get_uri_from_host(request,(base::m_secure ? "wss" : "ws"));
|
331
|
+
}
|
332
|
+
|
333
|
+
/// Process new websocket connection bytes
|
334
|
+
/**
|
335
|
+
*
|
336
|
+
* Hybi 13 data streams represent a series of variable length frames. Each
|
337
|
+
* frame is made up of a series of fixed length fields. The lengths of later
|
338
|
+
* fields are contained in earlier fields. The first field length is fixed
|
339
|
+
* by the spec.
|
340
|
+
*
|
341
|
+
* This processor represents a state machine that keeps track of what field
|
342
|
+
* is presently being read and how many more bytes are needed to complete it
|
343
|
+
*
|
344
|
+
*
|
345
|
+
*
|
346
|
+
*
|
347
|
+
* Read two header bytes
|
348
|
+
* Extract full frame length.
|
349
|
+
* Read extra header bytes
|
350
|
+
* Validate frame header (including extension validate)
|
351
|
+
* Read extension data into extension message state object
|
352
|
+
* Read payload data into payload
|
353
|
+
*
|
354
|
+
* @param buf Input buffer
|
355
|
+
*
|
356
|
+
* @param len Length of input buffer
|
357
|
+
*
|
358
|
+
* @return Number of bytes processed or zero on error
|
359
|
+
*/
|
360
|
+
size_t consume(uint8_t * buf, size_t len, lib::error_code & ec) {
|
361
|
+
size_t p = 0;
|
362
|
+
|
363
|
+
ec = lib::error_code();
|
364
|
+
|
365
|
+
//std::cout << "consume: " << utility::to_hex(buf,len) << std::endl;
|
366
|
+
|
367
|
+
// Loop while we don't have a message ready and we still have bytes
|
368
|
+
// left to process.
|
369
|
+
while (m_state != READY && m_state != FATAL_ERROR &&
|
370
|
+
(p < len || m_bytes_needed == 0))
|
371
|
+
{
|
372
|
+
if (m_state == HEADER_BASIC) {
|
373
|
+
p += this->copy_basic_header_bytes(buf+p,len-p);
|
374
|
+
|
375
|
+
if (m_bytes_needed > 0) {
|
376
|
+
continue;
|
377
|
+
}
|
378
|
+
|
379
|
+
ec = this->validate_incoming_basic_header(
|
380
|
+
m_basic_header, base::m_server, !m_data_msg.msg_ptr
|
381
|
+
);
|
382
|
+
if (ec) {break;}
|
383
|
+
|
384
|
+
// extract full header size and adjust consume state accordingly
|
385
|
+
m_state = HEADER_EXTENDED;
|
386
|
+
m_cursor = 0;
|
387
|
+
m_bytes_needed = frame::get_header_len(m_basic_header) -
|
388
|
+
frame::BASIC_HEADER_LENGTH;
|
389
|
+
} else if (m_state == HEADER_EXTENDED) {
|
390
|
+
p += this->copy_extended_header_bytes(buf+p,len-p);
|
391
|
+
|
392
|
+
if (m_bytes_needed > 0) {
|
393
|
+
continue;
|
394
|
+
}
|
395
|
+
|
396
|
+
ec = validate_incoming_extended_header(m_basic_header,m_extended_header);
|
397
|
+
if (ec){break;}
|
398
|
+
|
399
|
+
m_state = APPLICATION;
|
400
|
+
m_bytes_needed = static_cast<size_t>(get_payload_size(m_basic_header,m_extended_header));
|
401
|
+
|
402
|
+
// check if this frame is the start of a new message and set up
|
403
|
+
// the appropriate message metadata.
|
404
|
+
frame::opcode::value op = frame::get_opcode(m_basic_header);
|
405
|
+
|
406
|
+
// TODO: get_message failure conditions
|
407
|
+
|
408
|
+
if (frame::opcode::is_control(op)) {
|
409
|
+
m_control_msg = msg_metadata(
|
410
|
+
m_msg_manager->get_message(op,m_bytes_needed),
|
411
|
+
frame::get_masking_key(m_basic_header,m_extended_header)
|
412
|
+
);
|
413
|
+
|
414
|
+
m_current_msg = &m_control_msg;
|
415
|
+
} else {
|
416
|
+
if (!m_data_msg.msg_ptr) {
|
417
|
+
if (m_bytes_needed > base::m_max_message_size) {
|
418
|
+
ec = make_error_code(error::message_too_big);
|
419
|
+
break;
|
420
|
+
}
|
421
|
+
|
422
|
+
m_data_msg = msg_metadata(
|
423
|
+
m_msg_manager->get_message(op,m_bytes_needed),
|
424
|
+
frame::get_masking_key(m_basic_header,m_extended_header)
|
425
|
+
);
|
426
|
+
|
427
|
+
if (m_permessage_deflate.is_enabled()) {
|
428
|
+
m_data_msg.msg_ptr->set_compressed(frame::get_rsv1(m_basic_header));
|
429
|
+
}
|
430
|
+
} else {
|
431
|
+
// Fetch the underlying payload buffer from the data message we
|
432
|
+
// are writing into.
|
433
|
+
std::string & out = m_data_msg.msg_ptr->get_raw_payload();
|
434
|
+
|
435
|
+
if (out.size() + m_bytes_needed > base::m_max_message_size) {
|
436
|
+
ec = make_error_code(error::message_too_big);
|
437
|
+
break;
|
438
|
+
}
|
439
|
+
|
440
|
+
// Each frame starts a new masking key. All other state
|
441
|
+
// remains between frames.
|
442
|
+
m_data_msg.prepared_key = prepare_masking_key(
|
443
|
+
frame::get_masking_key(
|
444
|
+
m_basic_header,
|
445
|
+
m_extended_header
|
446
|
+
)
|
447
|
+
);
|
448
|
+
|
449
|
+
out.reserve(out.size() + m_bytes_needed);
|
450
|
+
}
|
451
|
+
m_current_msg = &m_data_msg;
|
452
|
+
}
|
453
|
+
} else if (m_state == EXTENSION) {
|
454
|
+
m_state = APPLICATION;
|
455
|
+
} else if (m_state == APPLICATION) {
|
456
|
+
size_t bytes_to_process = (std::min)(m_bytes_needed,len-p);
|
457
|
+
|
458
|
+
if (bytes_to_process > 0) {
|
459
|
+
p += this->process_payload_bytes(buf+p,bytes_to_process,ec);
|
460
|
+
|
461
|
+
if (ec) {break;}
|
462
|
+
}
|
463
|
+
|
464
|
+
if (m_bytes_needed > 0) {
|
465
|
+
continue;
|
466
|
+
}
|
467
|
+
|
468
|
+
// If this was the last frame in the message set the ready flag.
|
469
|
+
// Otherwise, reset processor state to read additional frames.
|
470
|
+
if (frame::get_fin(m_basic_header)) {
|
471
|
+
ec = finalize_message();
|
472
|
+
if (ec) {
|
473
|
+
break;
|
474
|
+
}
|
475
|
+
} else {
|
476
|
+
this->reset_headers();
|
477
|
+
}
|
478
|
+
} else {
|
479
|
+
// shouldn't be here
|
480
|
+
ec = make_error_code(error::general);
|
481
|
+
return 0;
|
482
|
+
}
|
483
|
+
}
|
484
|
+
|
485
|
+
return p;
|
486
|
+
}
|
487
|
+
|
488
|
+
/// Perform any finalization actions on an incoming message
|
489
|
+
/**
|
490
|
+
* Called after the full message is received. Provides the opportunity for
|
491
|
+
* extensions to complete any data post processing as well as final UTF8
|
492
|
+
* validation checks for text messages.
|
493
|
+
*
|
494
|
+
* @return A code indicating errors, if any
|
495
|
+
*/
|
496
|
+
lib::error_code finalize_message() {
|
497
|
+
std::string & out = m_current_msg->msg_ptr->get_raw_payload();
|
498
|
+
|
499
|
+
// if the frame is compressed, append the compression
|
500
|
+
// trailer and flush the compression buffer.
|
501
|
+
if (m_permessage_deflate.is_enabled()
|
502
|
+
&& m_current_msg->msg_ptr->get_compressed())
|
503
|
+
{
|
504
|
+
uint8_t trailer[4] = {0x00, 0x00, 0xff, 0xff};
|
505
|
+
|
506
|
+
// Decompress current buffer into the message buffer
|
507
|
+
lib::error_code ec;
|
508
|
+
ec = m_permessage_deflate.decompress(trailer,4,out);
|
509
|
+
if (ec) {
|
510
|
+
return ec;
|
511
|
+
}
|
512
|
+
}
|
513
|
+
|
514
|
+
// ensure that text messages end on a valid UTF8 code point
|
515
|
+
if (frame::get_opcode(m_basic_header) == frame::opcode::TEXT) {
|
516
|
+
if (!m_current_msg->validator.complete()) {
|
517
|
+
return make_error_code(error::invalid_utf8);
|
518
|
+
}
|
519
|
+
}
|
520
|
+
|
521
|
+
m_state = READY;
|
522
|
+
|
523
|
+
return lib::error_code();
|
524
|
+
}
|
525
|
+
|
526
|
+
void reset_headers() {
|
527
|
+
m_state = HEADER_BASIC;
|
528
|
+
m_bytes_needed = frame::BASIC_HEADER_LENGTH;
|
529
|
+
|
530
|
+
m_basic_header.b0 = 0x00;
|
531
|
+
m_basic_header.b1 = 0x00;
|
532
|
+
|
533
|
+
std::fill_n(
|
534
|
+
m_extended_header.bytes,
|
535
|
+
frame::MAX_EXTENDED_HEADER_LENGTH,
|
536
|
+
0x00
|
537
|
+
);
|
538
|
+
}
|
539
|
+
|
540
|
+
/// Test whether or not the processor has a message ready
|
541
|
+
bool ready() const {
|
542
|
+
return (m_state == READY);
|
543
|
+
}
|
544
|
+
|
545
|
+
message_ptr get_message() {
|
546
|
+
if (!ready()) {
|
547
|
+
return message_ptr();
|
548
|
+
}
|
549
|
+
message_ptr ret = m_current_msg->msg_ptr;
|
550
|
+
m_current_msg->msg_ptr.reset();
|
551
|
+
|
552
|
+
if (frame::opcode::is_control(ret->get_opcode())) {
|
553
|
+
m_control_msg.msg_ptr.reset();
|
554
|
+
} else {
|
555
|
+
m_data_msg.msg_ptr.reset();
|
556
|
+
}
|
557
|
+
|
558
|
+
this->reset_headers();
|
559
|
+
|
560
|
+
return ret;
|
561
|
+
}
|
562
|
+
|
563
|
+
/// Test whether or not the processor is in a fatal error state.
|
564
|
+
bool get_error() const {
|
565
|
+
return m_state == FATAL_ERROR;
|
566
|
+
}
|
567
|
+
|
568
|
+
size_t get_bytes_needed() const {
|
569
|
+
return m_bytes_needed;
|
570
|
+
}
|
571
|
+
|
572
|
+
/// Prepare a user data message for writing
|
573
|
+
/**
|
574
|
+
* Performs validation, masking, compression, etc. will return an error if
|
575
|
+
* there was an error, otherwise msg will be ready to be written
|
576
|
+
*
|
577
|
+
* TODO: tests
|
578
|
+
*
|
579
|
+
* @param in An unprepared message to prepare
|
580
|
+
* @param out A message to be overwritten with the prepared message
|
581
|
+
* @return error code
|
582
|
+
*/
|
583
|
+
virtual lib::error_code prepare_data_frame(message_ptr in, message_ptr out)
|
584
|
+
{
|
585
|
+
if (!in || !out) {
|
586
|
+
return make_error_code(error::invalid_arguments);
|
587
|
+
}
|
588
|
+
|
589
|
+
frame::opcode::value op = in->get_opcode();
|
590
|
+
|
591
|
+
// validate opcode: only regular data frames
|
592
|
+
if (frame::opcode::is_control(op)) {
|
593
|
+
return make_error_code(error::invalid_opcode);
|
594
|
+
}
|
595
|
+
|
596
|
+
std::string& i = in->get_raw_payload();
|
597
|
+
std::string& o = out->get_raw_payload();
|
598
|
+
|
599
|
+
// validate payload utf8
|
600
|
+
if (op == frame::opcode::TEXT && !utf8_validator::validate(i)) {
|
601
|
+
return make_error_code(error::invalid_payload);
|
602
|
+
}
|
603
|
+
|
604
|
+
frame::masking_key_type key;
|
605
|
+
bool masked = !base::m_server;
|
606
|
+
bool compressed = m_permessage_deflate.is_enabled()
|
607
|
+
&& in->get_compressed();
|
608
|
+
bool fin = in->get_fin();
|
609
|
+
|
610
|
+
if (masked) {
|
611
|
+
// Generate masking key.
|
612
|
+
key.i = m_rng();
|
613
|
+
} else {
|
614
|
+
key.i = 0;
|
615
|
+
}
|
616
|
+
|
617
|
+
// prepare payload
|
618
|
+
if (compressed) {
|
619
|
+
// compress and store in o after header.
|
620
|
+
m_permessage_deflate.compress(i,o);
|
621
|
+
|
622
|
+
if (o.size() < 4) {
|
623
|
+
return make_error_code(error::general);
|
624
|
+
}
|
625
|
+
|
626
|
+
// Strip trailing 4 0x00 0x00 0xff 0xff bytes before writing to the
|
627
|
+
// wire
|
628
|
+
o.resize(o.size()-4);
|
629
|
+
|
630
|
+
// mask in place if necessary
|
631
|
+
if (masked) {
|
632
|
+
this->masked_copy(o,o,key);
|
633
|
+
}
|
634
|
+
} else {
|
635
|
+
// no compression, just copy data into the output buffer
|
636
|
+
o.resize(i.size());
|
637
|
+
|
638
|
+
// if we are masked, have the masking function write to the output
|
639
|
+
// buffer directly to avoid another copy. If not masked, copy
|
640
|
+
// directly without masking.
|
641
|
+
if (masked) {
|
642
|
+
this->masked_copy(i,o,key);
|
643
|
+
} else {
|
644
|
+
std::copy(i.begin(),i.end(),o.begin());
|
645
|
+
}
|
646
|
+
}
|
647
|
+
|
648
|
+
// generate header
|
649
|
+
frame::basic_header h(op,o.size(),fin,masked,compressed);
|
650
|
+
|
651
|
+
if (masked) {
|
652
|
+
frame::extended_header e(o.size(),key.i);
|
653
|
+
out->set_header(frame::prepare_header(h,e));
|
654
|
+
} else {
|
655
|
+
frame::extended_header e(o.size());
|
656
|
+
out->set_header(frame::prepare_header(h,e));
|
657
|
+
}
|
658
|
+
|
659
|
+
out->set_prepared(true);
|
660
|
+
out->set_opcode(op);
|
661
|
+
|
662
|
+
return lib::error_code();
|
663
|
+
}
|
664
|
+
|
665
|
+
/// Get URI
|
666
|
+
lib::error_code prepare_ping(std::string const & in, message_ptr out) const {
|
667
|
+
return this->prepare_control(frame::opcode::PING,in,out);
|
668
|
+
}
|
669
|
+
|
670
|
+
lib::error_code prepare_pong(std::string const & in, message_ptr out) const {
|
671
|
+
return this->prepare_control(frame::opcode::PONG,in,out);
|
672
|
+
}
|
673
|
+
|
674
|
+
virtual lib::error_code prepare_close(close::status::value code,
|
675
|
+
std::string const & reason, message_ptr out) const
|
676
|
+
{
|
677
|
+
if (close::status::reserved(code)) {
|
678
|
+
return make_error_code(error::reserved_close_code);
|
679
|
+
}
|
680
|
+
|
681
|
+
if (close::status::invalid(code) && code != close::status::no_status) {
|
682
|
+
return make_error_code(error::invalid_close_code);
|
683
|
+
}
|
684
|
+
|
685
|
+
if (code == close::status::no_status && reason.size() > 0) {
|
686
|
+
return make_error_code(error::reason_requires_code);
|
687
|
+
}
|
688
|
+
|
689
|
+
if (reason.size() > frame:: limits::payload_size_basic-2) {
|
690
|
+
return make_error_code(error::control_too_big);
|
691
|
+
}
|
692
|
+
|
693
|
+
std::string payload;
|
694
|
+
|
695
|
+
if (code != close::status::no_status) {
|
696
|
+
close::code_converter val;
|
697
|
+
val.i = htons(code);
|
698
|
+
|
699
|
+
payload.resize(reason.size()+2);
|
700
|
+
|
701
|
+
payload[0] = val.c[0];
|
702
|
+
payload[1] = val.c[1];
|
703
|
+
|
704
|
+
std::copy(reason.begin(),reason.end(),payload.begin()+2);
|
705
|
+
}
|
706
|
+
|
707
|
+
return this->prepare_control(frame::opcode::CLOSE,payload,out);
|
708
|
+
}
|
709
|
+
protected:
|
710
|
+
/// Convert a client handshake key into a server response key in place
|
711
|
+
lib::error_code process_handshake_key(std::string & key) const {
|
712
|
+
key.append(constants::handshake_guid);
|
713
|
+
|
714
|
+
unsigned char message_digest[20];
|
715
|
+
sha1::calc(key.c_str(),key.length(),message_digest);
|
716
|
+
key = base64_encode(message_digest,20);
|
717
|
+
|
718
|
+
return lib::error_code();
|
719
|
+
}
|
720
|
+
|
721
|
+
/// Reads bytes from buf into m_basic_header
|
722
|
+
size_t copy_basic_header_bytes(uint8_t const * buf, size_t len) {
|
723
|
+
if (len == 0 || m_bytes_needed == 0) {
|
724
|
+
return 0;
|
725
|
+
}
|
726
|
+
|
727
|
+
if (len > 1) {
|
728
|
+
// have at least two bytes
|
729
|
+
if (m_bytes_needed == 2) {
|
730
|
+
m_basic_header.b0 = buf[0];
|
731
|
+
m_basic_header.b1 = buf[1];
|
732
|
+
m_bytes_needed -= 2;
|
733
|
+
return 2;
|
734
|
+
} else {
|
735
|
+
m_basic_header.b1 = buf[0];
|
736
|
+
m_bytes_needed--;
|
737
|
+
return 1;
|
738
|
+
}
|
739
|
+
} else {
|
740
|
+
// have exactly one byte
|
741
|
+
if (m_bytes_needed == 2) {
|
742
|
+
m_basic_header.b0 = buf[0];
|
743
|
+
m_bytes_needed--;
|
744
|
+
return 1;
|
745
|
+
} else {
|
746
|
+
m_basic_header.b1 = buf[0];
|
747
|
+
m_bytes_needed--;
|
748
|
+
return 1;
|
749
|
+
}
|
750
|
+
}
|
751
|
+
}
|
752
|
+
|
753
|
+
/// Reads bytes from buf into m_extended_header
|
754
|
+
size_t copy_extended_header_bytes(uint8_t const * buf, size_t len) {
|
755
|
+
size_t bytes_to_read = (std::min)(m_bytes_needed,len);
|
756
|
+
|
757
|
+
std::copy(buf,buf+bytes_to_read,m_extended_header.bytes+m_cursor);
|
758
|
+
m_cursor += bytes_to_read;
|
759
|
+
m_bytes_needed -= bytes_to_read;
|
760
|
+
|
761
|
+
return bytes_to_read;
|
762
|
+
}
|
763
|
+
|
764
|
+
/// Reads bytes from buf into message payload
|
765
|
+
/**
|
766
|
+
* This function performs unmasking and uncompression, validates the
|
767
|
+
* decoded bytes, and writes them to the appropriate message buffer.
|
768
|
+
*
|
769
|
+
* This member function will use the input buffer as stratch space for its
|
770
|
+
* work. The raw input bytes will not be preserved. This applies only to the
|
771
|
+
* bytes actually needed. At most min(m_bytes_needed,len) will be processed.
|
772
|
+
*
|
773
|
+
* @param buf Input/working buffer
|
774
|
+
* @param len Length of buf
|
775
|
+
* @return Number of bytes processed or zero in case of an error
|
776
|
+
*/
|
777
|
+
size_t process_payload_bytes(uint8_t * buf, size_t len, lib::error_code& ec)
|
778
|
+
{
|
779
|
+
// unmask if masked
|
780
|
+
if (frame::get_masked(m_basic_header)) {
|
781
|
+
m_current_msg->prepared_key = frame::byte_mask_circ(
|
782
|
+
buf, len, m_current_msg->prepared_key);
|
783
|
+
// TODO: SIMD masking
|
784
|
+
}
|
785
|
+
|
786
|
+
std::string & out = m_current_msg->msg_ptr->get_raw_payload();
|
787
|
+
size_t offset = out.size();
|
788
|
+
|
789
|
+
// decompress message if needed.
|
790
|
+
if (m_permessage_deflate.is_enabled()
|
791
|
+
&& m_current_msg->msg_ptr->get_compressed())
|
792
|
+
{
|
793
|
+
// Decompress current buffer into the message buffer
|
794
|
+
ec = m_permessage_deflate.decompress(buf,len,out);
|
795
|
+
if (ec) {
|
796
|
+
return 0;
|
797
|
+
}
|
798
|
+
} else {
|
799
|
+
// No compression, straight copy
|
800
|
+
out.append(reinterpret_cast<char *>(buf),len);
|
801
|
+
}
|
802
|
+
|
803
|
+
// validate unmasked, decompressed values
|
804
|
+
if (m_current_msg->msg_ptr->get_opcode() == frame::opcode::TEXT) {
|
805
|
+
if (!m_current_msg->validator.decode(out.begin()+offset,out.end())) {
|
806
|
+
ec = make_error_code(error::invalid_utf8);
|
807
|
+
return 0;
|
808
|
+
}
|
809
|
+
}
|
810
|
+
|
811
|
+
m_bytes_needed -= len;
|
812
|
+
|
813
|
+
return len;
|
814
|
+
}
|
815
|
+
|
816
|
+
/// Validate an incoming basic header
|
817
|
+
/**
|
818
|
+
* Validates an incoming hybi13 basic header.
|
819
|
+
*
|
820
|
+
* @param h The basic header to validate
|
821
|
+
* @param is_server Whether or not the endpoint that received this frame
|
822
|
+
* is a server.
|
823
|
+
* @param new_msg Whether or not this is the first frame of the message
|
824
|
+
* @return 0 on success or a non-zero error code on failure
|
825
|
+
*/
|
826
|
+
lib::error_code validate_incoming_basic_header(frame::basic_header const & h,
|
827
|
+
bool is_server, bool new_msg) const
|
828
|
+
{
|
829
|
+
frame::opcode::value op = frame::get_opcode(h);
|
830
|
+
|
831
|
+
// Check control frame size limit
|
832
|
+
if (frame::opcode::is_control(op) &&
|
833
|
+
frame::get_basic_size(h) > frame::limits::payload_size_basic)
|
834
|
+
{
|
835
|
+
return make_error_code(error::control_too_big);
|
836
|
+
}
|
837
|
+
|
838
|
+
// Check that RSV bits are clear
|
839
|
+
// The only RSV bits allowed are rsv1 if the permessage_compress
|
840
|
+
// extension is enabled for this connection and the message is not
|
841
|
+
// a control message.
|
842
|
+
//
|
843
|
+
// TODO: unit tests for this
|
844
|
+
if (frame::get_rsv1(h) && (!m_permessage_deflate.is_enabled()
|
845
|
+
|| frame::opcode::is_control(op)))
|
846
|
+
{
|
847
|
+
return make_error_code(error::invalid_rsv_bit);
|
848
|
+
}
|
849
|
+
|
850
|
+
if (frame::get_rsv2(h) || frame::get_rsv3(h)) {
|
851
|
+
return make_error_code(error::invalid_rsv_bit);
|
852
|
+
}
|
853
|
+
|
854
|
+
// Check for reserved opcodes
|
855
|
+
if (frame::opcode::reserved(op)) {
|
856
|
+
return make_error_code(error::invalid_opcode);
|
857
|
+
}
|
858
|
+
|
859
|
+
// Check for invalid opcodes
|
860
|
+
// TODO: unit tests for this?
|
861
|
+
if (frame::opcode::invalid(op)) {
|
862
|
+
return make_error_code(error::invalid_opcode);
|
863
|
+
}
|
864
|
+
|
865
|
+
// Check for fragmented control message
|
866
|
+
if (frame::opcode::is_control(op) && !frame::get_fin(h)) {
|
867
|
+
return make_error_code(error::fragmented_control);
|
868
|
+
}
|
869
|
+
|
870
|
+
// Check for continuation without an active message
|
871
|
+
if (new_msg && op == frame::opcode::CONTINUATION) {
|
872
|
+
return make_error_code(error::invalid_continuation);
|
873
|
+
}
|
874
|
+
|
875
|
+
// Check for new data frame when expecting continuation
|
876
|
+
if (!new_msg && !frame::opcode::is_control(op) &&
|
877
|
+
op != frame::opcode::CONTINUATION)
|
878
|
+
{
|
879
|
+
return make_error_code(error::invalid_continuation);
|
880
|
+
}
|
881
|
+
|
882
|
+
// Servers should reject any unmasked frames from clients.
|
883
|
+
// Clients should reject any masked frames from servers.
|
884
|
+
if (is_server && !frame::get_masked(h)) {
|
885
|
+
return make_error_code(error::masking_required);
|
886
|
+
} else if (!is_server && frame::get_masked(h)) {
|
887
|
+
return make_error_code(error::masking_forbidden);
|
888
|
+
}
|
889
|
+
|
890
|
+
return lib::error_code();
|
891
|
+
}
|
892
|
+
|
893
|
+
/// Validate an incoming extended header
|
894
|
+
/**
|
895
|
+
* Validates an incoming hybi13 full header.
|
896
|
+
*
|
897
|
+
* @todo unit test for the >32 bit frames on 32 bit systems case
|
898
|
+
*
|
899
|
+
* @param h The basic header to validate
|
900
|
+
* @param e The extended header to validate
|
901
|
+
* @return An error_code, non-zero values indicate why the validation
|
902
|
+
* failed
|
903
|
+
*/
|
904
|
+
lib::error_code validate_incoming_extended_header(frame::basic_header h,
|
905
|
+
frame::extended_header e) const
|
906
|
+
{
|
907
|
+
uint8_t basic_size = frame::get_basic_size(h);
|
908
|
+
uint64_t payload_size = frame::get_payload_size(h,e);
|
909
|
+
|
910
|
+
// Check for non-minimally encoded payloads
|
911
|
+
if (basic_size == frame::payload_size_code_16bit &&
|
912
|
+
payload_size <= frame::limits::payload_size_basic)
|
913
|
+
{
|
914
|
+
return make_error_code(error::non_minimal_encoding);
|
915
|
+
}
|
916
|
+
|
917
|
+
if (basic_size == frame::payload_size_code_64bit &&
|
918
|
+
payload_size <= frame::limits::payload_size_extended)
|
919
|
+
{
|
920
|
+
return make_error_code(error::non_minimal_encoding);
|
921
|
+
}
|
922
|
+
|
923
|
+
// Check for >32bit frames on 32 bit systems
|
924
|
+
if (sizeof(size_t) == 4 && (payload_size >> 32)) {
|
925
|
+
return make_error_code(error::requires_64bit);
|
926
|
+
}
|
927
|
+
|
928
|
+
return lib::error_code();
|
929
|
+
}
|
930
|
+
|
931
|
+
/// Copy and mask/unmask in one operation
|
932
|
+
/**
|
933
|
+
* Reads input from one string and writes unmasked output to another.
|
934
|
+
*
|
935
|
+
* @param [in] i The input string.
|
936
|
+
* @param [out] o The output string.
|
937
|
+
* @param [in] key The masking key to use for masking/unmasking
|
938
|
+
*/
|
939
|
+
void masked_copy (std::string const & i, std::string & o,
|
940
|
+
frame::masking_key_type key) const
|
941
|
+
{
|
942
|
+
frame::byte_mask(i.begin(),i.end(),o.begin(),key);
|
943
|
+
// TODO: SIMD masking
|
944
|
+
}
|
945
|
+
|
946
|
+
/// Generic prepare control frame with opcode and payload.
|
947
|
+
/**
|
948
|
+
* Internal control frame building method. Handles validation, masking, etc
|
949
|
+
*
|
950
|
+
* @param op The control opcode to use
|
951
|
+
* @param payload The payload to use
|
952
|
+
* @param out The message buffer to store the prepared frame in
|
953
|
+
* @return Status code, zero on success, non-zero on error
|
954
|
+
*/
|
955
|
+
lib::error_code prepare_control(frame::opcode::value op,
|
956
|
+
std::string const & payload, message_ptr out) const
|
957
|
+
{
|
958
|
+
if (!out) {
|
959
|
+
return make_error_code(error::invalid_arguments);
|
960
|
+
}
|
961
|
+
|
962
|
+
if (!frame::opcode::is_control(op)) {
|
963
|
+
return make_error_code(error::invalid_opcode);
|
964
|
+
}
|
965
|
+
|
966
|
+
if (payload.size() > frame::limits::payload_size_basic) {
|
967
|
+
return make_error_code(error::control_too_big);
|
968
|
+
}
|
969
|
+
|
970
|
+
frame::masking_key_type key;
|
971
|
+
bool masked = !base::m_server;
|
972
|
+
|
973
|
+
frame::basic_header h(op,payload.size(),true,masked);
|
974
|
+
|
975
|
+
std::string & o = out->get_raw_payload();
|
976
|
+
o.resize(payload.size());
|
977
|
+
|
978
|
+
if (masked) {
|
979
|
+
// Generate masking key.
|
980
|
+
key.i = m_rng();
|
981
|
+
|
982
|
+
frame::extended_header e(payload.size(),key.i);
|
983
|
+
out->set_header(frame::prepare_header(h,e));
|
984
|
+
this->masked_copy(payload,o,key);
|
985
|
+
} else {
|
986
|
+
frame::extended_header e(payload.size());
|
987
|
+
out->set_header(frame::prepare_header(h,e));
|
988
|
+
std::copy(payload.begin(),payload.end(),o.begin());
|
989
|
+
}
|
990
|
+
|
991
|
+
out->set_opcode(op);
|
992
|
+
out->set_prepared(true);
|
993
|
+
|
994
|
+
return lib::error_code();
|
995
|
+
}
|
996
|
+
|
997
|
+
enum state {
|
998
|
+
HEADER_BASIC = 0,
|
999
|
+
HEADER_EXTENDED = 1,
|
1000
|
+
EXTENSION = 2,
|
1001
|
+
APPLICATION = 3,
|
1002
|
+
READY = 4,
|
1003
|
+
FATAL_ERROR = 5
|
1004
|
+
};
|
1005
|
+
|
1006
|
+
/// This data structure holds data related to processing a message, such as
|
1007
|
+
/// the buffer it is being written to, its masking key, its UTF8 validation
|
1008
|
+
/// state, and sometimes its compression state.
|
1009
|
+
struct msg_metadata {
|
1010
|
+
msg_metadata() {}
|
1011
|
+
msg_metadata(message_ptr m, size_t p) : msg_ptr(m),prepared_key(p) {}
|
1012
|
+
msg_metadata(message_ptr m, frame::masking_key_type p)
|
1013
|
+
: msg_ptr(m)
|
1014
|
+
, prepared_key(prepare_masking_key(p)) {}
|
1015
|
+
|
1016
|
+
message_ptr msg_ptr; // pointer to the message data buffer
|
1017
|
+
size_t prepared_key; // prepared masking key
|
1018
|
+
utf8_validator::validator validator; // utf8 validation state
|
1019
|
+
};
|
1020
|
+
|
1021
|
+
// Basic header of the frame being read
|
1022
|
+
frame::basic_header m_basic_header;
|
1023
|
+
|
1024
|
+
// Pointer to a manager that can create message buffers for us.
|
1025
|
+
msg_manager_ptr m_msg_manager;
|
1026
|
+
|
1027
|
+
// Number of bytes needed to complete the current operation
|
1028
|
+
size_t m_bytes_needed;
|
1029
|
+
|
1030
|
+
// Number of extended header bytes read
|
1031
|
+
size_t m_cursor;
|
1032
|
+
|
1033
|
+
// Metadata for the current data msg
|
1034
|
+
msg_metadata m_data_msg;
|
1035
|
+
// Metadata for the current control msg
|
1036
|
+
msg_metadata m_control_msg;
|
1037
|
+
|
1038
|
+
// Pointer to the metadata associated with the frame being read
|
1039
|
+
msg_metadata * m_current_msg;
|
1040
|
+
|
1041
|
+
// Extended header of current frame
|
1042
|
+
frame::extended_header m_extended_header;
|
1043
|
+
|
1044
|
+
rng_type & m_rng;
|
1045
|
+
|
1046
|
+
// Overall state of the processor
|
1047
|
+
state m_state;
|
1048
|
+
|
1049
|
+
// Extensions
|
1050
|
+
permessage_deflate_type m_permessage_deflate;
|
1051
|
+
};
|
1052
|
+
|
1053
|
+
} // namespace processor
|
1054
|
+
} // namespace websocketpp
|
1055
|
+
|
1056
|
+
#endif //WEBSOCKETPP_PROCESSOR_HYBI13_HPP
|