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
data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c.cxxcodebuilder
ADDED
@@ -0,0 +1,160 @@
|
|
1
|
+
# Phusion Passenger - https://www.phusionpassenger.com/
|
2
|
+
# Copyright (c) 2017 Phusion Holding B.V.
|
3
|
+
#
|
4
|
+
# "Passenger", "Phusion Passenger" and "Union Station" are registered
|
5
|
+
# trademarks of Phusion Holding B.V.
|
6
|
+
#
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in
|
15
|
+
# all copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
+
# THE SOFTWARE.
|
24
|
+
|
25
|
+
# This file uses the cxxcodebuilder API. Learn more at:
|
26
|
+
# https://github.com/phusion/cxxcodebuilder
|
27
|
+
|
28
|
+
require 'phusion_passenger/nginx/config_options'
|
29
|
+
|
30
|
+
def main
|
31
|
+
set_indent_string ' '
|
32
|
+
comment copyright_header_for(__FILE__), 1
|
33
|
+
|
34
|
+
separator
|
35
|
+
|
36
|
+
comment %q{
|
37
|
+
ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c is automatically generated from
|
38
|
+
ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c.cxxcodebuilder,
|
39
|
+
using definitions from src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.
|
40
|
+
Edits to ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c will be lost.
|
41
|
+
|
42
|
+
To update ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c:
|
43
|
+
rake nginx
|
44
|
+
|
45
|
+
To force regeneration of ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c:
|
46
|
+
rm -f src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c
|
47
|
+
rake src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c
|
48
|
+
}
|
49
|
+
|
50
|
+
separator
|
51
|
+
|
52
|
+
add_code %Q{
|
53
|
+
#include "ManifestGeneration.h"
|
54
|
+
}
|
55
|
+
|
56
|
+
separator
|
57
|
+
|
58
|
+
function('static void set_manifest_autogenerated_global_conf_defaults(manifest_gen_ctx_t *ctx)') do
|
59
|
+
filter_eligible_options(NGINX_CONFIGURATION_OPTIONS, :global).each do |option|
|
60
|
+
emit_manifest_config_entry_default_adding_code(option, 'ctx->global_config_container')
|
61
|
+
separator
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
function('static void set_manifest_autogenerated_app_conf_defaults(' \
|
66
|
+
'manifest_gen_ctx_t *ctx, PsgJsonValue *options_container)') \
|
67
|
+
do
|
68
|
+
filter_eligible_options(NGINX_CONFIGURATION_OPTIONS, :application).each do |option|
|
69
|
+
emit_manifest_config_entry_default_adding_code(option, 'options_container')
|
70
|
+
separator
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
function('static void set_manifest_autogenerated_loc_conf_defaults(' \
|
75
|
+
'manifest_gen_ctx_t *ctx, PsgJsonValue *options_container)') \
|
76
|
+
do
|
77
|
+
filter_eligible_options(NGINX_CONFIGURATION_OPTIONS, :location).each do |option|
|
78
|
+
emit_manifest_config_entry_default_adding_code(option, 'options_container')
|
79
|
+
separator
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def filter_eligible_options(options, scope)
|
85
|
+
options.reject do |option|
|
86
|
+
option[:alias_for] ||
|
87
|
+
option.fetch(:field, true).nil? ||
|
88
|
+
(option[:default].nil? && option[:dynamic_default].nil?) ||
|
89
|
+
option[:scope] != scope
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
def emit_manifest_config_entry_default_adding_code(option, var_name)
|
94
|
+
if option[:dynamic_default]
|
95
|
+
add_code %Q{
|
96
|
+
add_manifest_options_container_dynamic_default(ctx,
|
97
|
+
#{var_name},
|
98
|
+
#{option[:name].inspect},
|
99
|
+
sizeof(#{option[:name].inspect}) - 1,
|
100
|
+
#{option[:dynamic_default].inspect},
|
101
|
+
sizeof(#{option[:dynamic_default].inspect}) - 1);
|
102
|
+
}
|
103
|
+
else
|
104
|
+
case option[:type]
|
105
|
+
when :string
|
106
|
+
add_code %Q{
|
107
|
+
add_manifest_options_container_static_default_str(ctx,
|
108
|
+
#{var_name},
|
109
|
+
#{option[:name].inspect},
|
110
|
+
sizeof(#{option[:name].inspect}) - 1,
|
111
|
+
#{option[:default].inspect},
|
112
|
+
sizeof(#{option[:default].inspect}) - 1);
|
113
|
+
}
|
114
|
+
when :integer
|
115
|
+
add_code %Q{
|
116
|
+
add_manifest_options_container_static_default_int(ctx,
|
117
|
+
#{var_name},
|
118
|
+
#{option[:name].inspect},
|
119
|
+
sizeof(#{option[:name].inspect}) - 1,
|
120
|
+
#{option[:default]});
|
121
|
+
}
|
122
|
+
when :uinteger, :msec
|
123
|
+
add_code %Q{
|
124
|
+
add_manifest_options_container_static_default_uint(ctx,
|
125
|
+
#{var_name},
|
126
|
+
#{option[:name].inspect},
|
127
|
+
sizeof(#{option[:name].inspect}) - 1,
|
128
|
+
#{option[:default]});
|
129
|
+
}
|
130
|
+
when :flag
|
131
|
+
add_code %Q{
|
132
|
+
add_manifest_options_container_static_default_bool(ctx,
|
133
|
+
#{var_name},
|
134
|
+
#{option[:name].inspect},
|
135
|
+
sizeof(#{option[:name].inspect}) - 1,
|
136
|
+
#{option[:default] ? 1 : 0});
|
137
|
+
}
|
138
|
+
when :string_array
|
139
|
+
add_code %Q{
|
140
|
+
add_manifest_options_container_static_default_str_array(ctx,
|
141
|
+
#{var_name},
|
142
|
+
#{option[:name].inspect},
|
143
|
+
sizeof(#{option[:name].inspect}) - 1,
|
144
|
+
#{option[:default]});
|
145
|
+
}
|
146
|
+
when :string_keyval
|
147
|
+
add_code %Q{
|
148
|
+
add_manifest_options_container_static_default_str_keyval(ctx,
|
149
|
+
#{var_name},
|
150
|
+
#{option[:name].inspect},
|
151
|
+
sizeof(#{option[:name].inspect}) - 1,
|
152
|
+
#{option[:default]});
|
153
|
+
}
|
154
|
+
else
|
155
|
+
raise "Unknown option type #{option[:type].inspect} for option #{option[:name]}"
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
main
|
@@ -0,0 +1,831 @@
|
|
1
|
+
/*
|
2
|
+
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
+
* Copyright (c) 2017 Phusion Holding B.V.
|
4
|
+
*
|
5
|
+
* "Passenger", "Phusion Passenger" and "Union Station" are registered
|
6
|
+
* trademarks of Phusion Holding B.V.
|
7
|
+
*
|
8
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
9
|
+
* of this software and associated documentation files (the "Software"), to deal
|
10
|
+
* in the Software without restriction, including without limitation the rights
|
11
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
12
|
+
* copies of the Software, and to permit persons to whom the Software is
|
13
|
+
* furnished to do so, subject to the following conditions:
|
14
|
+
*
|
15
|
+
* The above copyright notice and this permission notice shall be included in
|
16
|
+
* all copies or substantial portions of the Software.
|
17
|
+
*
|
18
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
20
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
21
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
22
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
24
|
+
* THE SOFTWARE.
|
25
|
+
*/
|
26
|
+
|
27
|
+
/*
|
28
|
+
* ConfigGeneral/AutoGeneratedSetterFuncs.c is automatically generated from
|
29
|
+
* ConfigGeneral/AutoGeneratedSetterFuncs.c.cxxcodebuilder,
|
30
|
+
* using definitions from src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.
|
31
|
+
* Edits to ConfigGeneral/AutoGeneratedSetterFuncs.c will be lost.
|
32
|
+
*
|
33
|
+
* To update ConfigGeneral/AutoGeneratedSetterFuncs.c:
|
34
|
+
* rake nginx
|
35
|
+
*
|
36
|
+
* To force regeneration of ConfigGeneral/AutoGeneratedSetterFuncs.c:
|
37
|
+
* rm -f src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c
|
38
|
+
* rake src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c
|
39
|
+
*/
|
40
|
+
|
41
|
+
static void
|
42
|
+
record_main_conf_source_location(ngx_conf_t *cf, ngx_str_t *file, ngx_uint_t *line) {
|
43
|
+
if (cf->conf_file == NULL) {
|
44
|
+
file->data = (u_char *) NULL;
|
45
|
+
file->len = 0;
|
46
|
+
*line = 0;
|
47
|
+
} else if (cf->conf_file->file.fd == NGX_INVALID_FILE) {
|
48
|
+
file->data = (u_char *) "(command line)";
|
49
|
+
file->len = sizeof("(command line)") - 1;
|
50
|
+
*line = 0;
|
51
|
+
} else {
|
52
|
+
*file = cf->conf_file->file.name;
|
53
|
+
*line = cf->conf_file->line;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
static void
|
58
|
+
record_loc_conf_source_location(ngx_conf_t *cf, passenger_loc_conf_t *pl_conf, ngx_str_t *file, ngx_uint_t *line) {
|
59
|
+
pl_conf->cscf = ngx_http_conf_get_module_srv_conf(cf, ngx_http_core_module);
|
60
|
+
pl_conf->clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
|
61
|
+
if (cf->conf_file == NULL) {
|
62
|
+
file->data = (u_char *) NULL;
|
63
|
+
file->len = 0;
|
64
|
+
*line = 0;
|
65
|
+
} else if (cf->conf_file->file.fd == NGX_INVALID_FILE) {
|
66
|
+
file->data = (u_char *) "(command line)";
|
67
|
+
file->len = sizeof("(command line)") - 1;
|
68
|
+
*line = 0;
|
69
|
+
} else {
|
70
|
+
*file = cf->conf_file->file.name;
|
71
|
+
*line = cf->conf_file->line;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
|
76
|
+
static char *
|
77
|
+
passenger_conf_set_root(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
78
|
+
passenger_main_conf_t *passenger_conf = conf;
|
79
|
+
|
80
|
+
passenger_conf->autogenerated.root_dir_explicitly_set = 1;
|
81
|
+
record_main_conf_source_location(cf,
|
82
|
+
&passenger_conf->autogenerated.root_dir_source_file,
|
83
|
+
&passenger_conf->autogenerated.root_dir_source_line);
|
84
|
+
|
85
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
86
|
+
}
|
87
|
+
|
88
|
+
static char *
|
89
|
+
passenger_conf_set_ctl(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
90
|
+
passenger_main_conf_t *passenger_conf = conf;
|
91
|
+
|
92
|
+
passenger_conf->autogenerated.ctl_explicitly_set = 1;
|
93
|
+
record_main_conf_source_location(cf,
|
94
|
+
&passenger_conf->autogenerated.ctl_source_file,
|
95
|
+
&passenger_conf->autogenerated.ctl_source_line);
|
96
|
+
|
97
|
+
return ngx_conf_set_keyval_slot(cf, cmd, conf);
|
98
|
+
}
|
99
|
+
|
100
|
+
static char *
|
101
|
+
passenger_conf_set_abort_on_startup_error(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
102
|
+
passenger_main_conf_t *passenger_conf = conf;
|
103
|
+
|
104
|
+
passenger_conf->autogenerated.abort_on_startup_error_explicitly_set = 1;
|
105
|
+
record_main_conf_source_location(cf,
|
106
|
+
&passenger_conf->autogenerated.abort_on_startup_error_source_file,
|
107
|
+
&passenger_conf->autogenerated.abort_on_startup_error_source_line);
|
108
|
+
|
109
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
110
|
+
}
|
111
|
+
|
112
|
+
static char *
|
113
|
+
passenger_conf_set_log_level(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
114
|
+
passenger_main_conf_t *passenger_conf = conf;
|
115
|
+
|
116
|
+
passenger_conf->autogenerated.log_level_explicitly_set = 1;
|
117
|
+
record_main_conf_source_location(cf,
|
118
|
+
&passenger_conf->autogenerated.log_level_source_file,
|
119
|
+
&passenger_conf->autogenerated.log_level_source_line);
|
120
|
+
|
121
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
122
|
+
}
|
123
|
+
|
124
|
+
static char *
|
125
|
+
passenger_conf_set_log_file(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
126
|
+
passenger_main_conf_t *passenger_conf = conf;
|
127
|
+
|
128
|
+
passenger_conf->autogenerated.log_file_explicitly_set = 1;
|
129
|
+
record_main_conf_source_location(cf,
|
130
|
+
&passenger_conf->autogenerated.log_file_source_file,
|
131
|
+
&passenger_conf->autogenerated.log_file_source_line);
|
132
|
+
|
133
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
134
|
+
}
|
135
|
+
|
136
|
+
static char *
|
137
|
+
passenger_conf_set_file_descriptor_log_file(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
138
|
+
passenger_main_conf_t *passenger_conf = conf;
|
139
|
+
|
140
|
+
passenger_conf->autogenerated.file_descriptor_log_file_explicitly_set = 1;
|
141
|
+
record_main_conf_source_location(cf,
|
142
|
+
&passenger_conf->autogenerated.file_descriptor_log_file_source_file,
|
143
|
+
&passenger_conf->autogenerated.file_descriptor_log_file_source_line);
|
144
|
+
|
145
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
146
|
+
}
|
147
|
+
|
148
|
+
static char *
|
149
|
+
passenger_conf_set_data_buffer_dir(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
150
|
+
passenger_main_conf_t *passenger_conf = conf;
|
151
|
+
|
152
|
+
passenger_conf->autogenerated.data_buffer_dir_explicitly_set = 1;
|
153
|
+
record_main_conf_source_location(cf,
|
154
|
+
&passenger_conf->autogenerated.data_buffer_dir_source_file,
|
155
|
+
&passenger_conf->autogenerated.data_buffer_dir_source_line);
|
156
|
+
|
157
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
158
|
+
}
|
159
|
+
|
160
|
+
static char *
|
161
|
+
passenger_conf_set_socket_backlog(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
162
|
+
passenger_main_conf_t *passenger_conf = conf;
|
163
|
+
|
164
|
+
passenger_conf->autogenerated.socket_backlog_explicitly_set = 1;
|
165
|
+
record_main_conf_source_location(cf,
|
166
|
+
&passenger_conf->autogenerated.socket_backlog_source_file,
|
167
|
+
&passenger_conf->autogenerated.socket_backlog_source_line);
|
168
|
+
|
169
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
170
|
+
}
|
171
|
+
|
172
|
+
static char *
|
173
|
+
passenger_conf_set_core_file_descriptor_ulimit(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
174
|
+
passenger_main_conf_t *passenger_conf = conf;
|
175
|
+
|
176
|
+
passenger_conf->autogenerated.core_file_descriptor_ulimit_explicitly_set = 1;
|
177
|
+
record_main_conf_source_location(cf,
|
178
|
+
&passenger_conf->autogenerated.core_file_descriptor_ulimit_source_file,
|
179
|
+
&passenger_conf->autogenerated.core_file_descriptor_ulimit_source_line);
|
180
|
+
|
181
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
182
|
+
}
|
183
|
+
|
184
|
+
static char *
|
185
|
+
passenger_conf_set_disable_security_update_check(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
186
|
+
passenger_main_conf_t *passenger_conf = conf;
|
187
|
+
|
188
|
+
passenger_conf->autogenerated.disable_security_update_check_explicitly_set = 1;
|
189
|
+
record_main_conf_source_location(cf,
|
190
|
+
&passenger_conf->autogenerated.disable_security_update_check_source_file,
|
191
|
+
&passenger_conf->autogenerated.disable_security_update_check_source_line);
|
192
|
+
|
193
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
194
|
+
}
|
195
|
+
|
196
|
+
static char *
|
197
|
+
passenger_conf_set_security_update_check_proxy(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
198
|
+
passenger_main_conf_t *passenger_conf = conf;
|
199
|
+
|
200
|
+
passenger_conf->autogenerated.security_update_check_proxy_explicitly_set = 1;
|
201
|
+
record_main_conf_source_location(cf,
|
202
|
+
&passenger_conf->autogenerated.security_update_check_proxy_source_file,
|
203
|
+
&passenger_conf->autogenerated.security_update_check_proxy_source_line);
|
204
|
+
|
205
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
206
|
+
}
|
207
|
+
|
208
|
+
static char *
|
209
|
+
passenger_conf_set_pre_start(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
210
|
+
passenger_main_conf_t *passenger_conf = conf;
|
211
|
+
|
212
|
+
passenger_conf->autogenerated.prestart_uris_explicitly_set = 1;
|
213
|
+
record_main_conf_source_location(cf,
|
214
|
+
&passenger_conf->autogenerated.prestart_uris_source_file,
|
215
|
+
&passenger_conf->autogenerated.prestart_uris_source_line);
|
216
|
+
|
217
|
+
return ngx_conf_set_str_array_slot(cf, cmd, conf);
|
218
|
+
}
|
219
|
+
|
220
|
+
static char *
|
221
|
+
passenger_conf_set_instance_registry_dir(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
222
|
+
passenger_main_conf_t *passenger_conf = conf;
|
223
|
+
|
224
|
+
passenger_conf->autogenerated.instance_registry_dir_explicitly_set = 1;
|
225
|
+
record_main_conf_source_location(cf,
|
226
|
+
&passenger_conf->autogenerated.instance_registry_dir_source_file,
|
227
|
+
&passenger_conf->autogenerated.instance_registry_dir_source_line);
|
228
|
+
|
229
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
230
|
+
}
|
231
|
+
|
232
|
+
static char *
|
233
|
+
passenger_conf_set_turbocaching(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
234
|
+
passenger_main_conf_t *passenger_conf = conf;
|
235
|
+
|
236
|
+
passenger_conf->autogenerated.turbocaching_explicitly_set = 1;
|
237
|
+
record_main_conf_source_location(cf,
|
238
|
+
&passenger_conf->autogenerated.turbocaching_source_file,
|
239
|
+
&passenger_conf->autogenerated.turbocaching_source_line);
|
240
|
+
|
241
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
242
|
+
}
|
243
|
+
|
244
|
+
static char *
|
245
|
+
passenger_conf_set_user_switching(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
246
|
+
passenger_main_conf_t *passenger_conf = conf;
|
247
|
+
|
248
|
+
passenger_conf->autogenerated.user_switching_explicitly_set = 1;
|
249
|
+
record_main_conf_source_location(cf,
|
250
|
+
&passenger_conf->autogenerated.user_switching_source_file,
|
251
|
+
&passenger_conf->autogenerated.user_switching_source_line);
|
252
|
+
|
253
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
254
|
+
}
|
255
|
+
|
256
|
+
static char *
|
257
|
+
passenger_conf_set_default_user(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
258
|
+
passenger_main_conf_t *passenger_conf = conf;
|
259
|
+
|
260
|
+
passenger_conf->autogenerated.default_user_explicitly_set = 1;
|
261
|
+
record_main_conf_source_location(cf,
|
262
|
+
&passenger_conf->autogenerated.default_user_source_file,
|
263
|
+
&passenger_conf->autogenerated.default_user_source_line);
|
264
|
+
|
265
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
266
|
+
}
|
267
|
+
|
268
|
+
static char *
|
269
|
+
passenger_conf_set_default_group(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
270
|
+
passenger_main_conf_t *passenger_conf = conf;
|
271
|
+
|
272
|
+
passenger_conf->autogenerated.default_group_explicitly_set = 1;
|
273
|
+
record_main_conf_source_location(cf,
|
274
|
+
&passenger_conf->autogenerated.default_group_source_file,
|
275
|
+
&passenger_conf->autogenerated.default_group_source_line);
|
276
|
+
|
277
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
278
|
+
}
|
279
|
+
|
280
|
+
static char *
|
281
|
+
passenger_conf_set_max_pool_size(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
282
|
+
passenger_main_conf_t *passenger_conf = conf;
|
283
|
+
|
284
|
+
passenger_conf->autogenerated.max_pool_size_explicitly_set = 1;
|
285
|
+
record_main_conf_source_location(cf,
|
286
|
+
&passenger_conf->autogenerated.max_pool_size_source_file,
|
287
|
+
&passenger_conf->autogenerated.max_pool_size_source_line);
|
288
|
+
|
289
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
290
|
+
}
|
291
|
+
|
292
|
+
static char *
|
293
|
+
passenger_conf_set_pool_idle_time(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
294
|
+
passenger_main_conf_t *passenger_conf = conf;
|
295
|
+
|
296
|
+
passenger_conf->autogenerated.pool_idle_time_explicitly_set = 1;
|
297
|
+
record_main_conf_source_location(cf,
|
298
|
+
&passenger_conf->autogenerated.pool_idle_time_source_file,
|
299
|
+
&passenger_conf->autogenerated.pool_idle_time_source_line);
|
300
|
+
|
301
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
302
|
+
}
|
303
|
+
|
304
|
+
static char *
|
305
|
+
passenger_conf_set_response_buffer_high_watermark(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
306
|
+
passenger_main_conf_t *passenger_conf = conf;
|
307
|
+
|
308
|
+
passenger_conf->autogenerated.response_buffer_high_watermark_explicitly_set = 1;
|
309
|
+
record_main_conf_source_location(cf,
|
310
|
+
&passenger_conf->autogenerated.response_buffer_high_watermark_source_file,
|
311
|
+
&passenger_conf->autogenerated.response_buffer_high_watermark_source_line);
|
312
|
+
|
313
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
314
|
+
}
|
315
|
+
|
316
|
+
static char *
|
317
|
+
passenger_conf_set_stat_throttle_rate(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
318
|
+
passenger_main_conf_t *passenger_conf = conf;
|
319
|
+
|
320
|
+
passenger_conf->autogenerated.stat_throttle_rate_explicitly_set = 1;
|
321
|
+
record_main_conf_source_location(cf,
|
322
|
+
&passenger_conf->autogenerated.stat_throttle_rate_source_file,
|
323
|
+
&passenger_conf->autogenerated.stat_throttle_rate_source_line);
|
324
|
+
|
325
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
326
|
+
}
|
327
|
+
|
328
|
+
static char *
|
329
|
+
passenger_conf_set_show_version_in_header(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
330
|
+
passenger_main_conf_t *passenger_conf = conf;
|
331
|
+
|
332
|
+
passenger_conf->autogenerated.show_version_in_header_explicitly_set = 1;
|
333
|
+
record_main_conf_source_location(cf,
|
334
|
+
&passenger_conf->autogenerated.show_version_in_header_source_file,
|
335
|
+
&passenger_conf->autogenerated.show_version_in_header_source_line);
|
336
|
+
|
337
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
338
|
+
}
|
339
|
+
|
340
|
+
static char *
|
341
|
+
passenger_conf_set_app_file_descriptor_ulimit(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
342
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
343
|
+
|
344
|
+
passenger_conf->autogenerated.app_file_descriptor_ulimit_explicitly_set = 1;
|
345
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
346
|
+
&passenger_conf->autogenerated.app_file_descriptor_ulimit_source_file,
|
347
|
+
&passenger_conf->autogenerated.app_file_descriptor_ulimit_source_line);
|
348
|
+
|
349
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
350
|
+
}
|
351
|
+
|
352
|
+
static char *
|
353
|
+
passenger_conf_set_ruby(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
354
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
355
|
+
|
356
|
+
passenger_conf->autogenerated.ruby_explicitly_set = 1;
|
357
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
358
|
+
&passenger_conf->autogenerated.ruby_source_file,
|
359
|
+
&passenger_conf->autogenerated.ruby_source_line);
|
360
|
+
|
361
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
362
|
+
}
|
363
|
+
|
364
|
+
static char *
|
365
|
+
passenger_conf_set_python(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
366
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
367
|
+
|
368
|
+
passenger_conf->autogenerated.python_explicitly_set = 1;
|
369
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
370
|
+
&passenger_conf->autogenerated.python_source_file,
|
371
|
+
&passenger_conf->autogenerated.python_source_line);
|
372
|
+
|
373
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
374
|
+
}
|
375
|
+
|
376
|
+
static char *
|
377
|
+
passenger_conf_set_nodejs(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
378
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
379
|
+
|
380
|
+
passenger_conf->autogenerated.nodejs_explicitly_set = 1;
|
381
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
382
|
+
&passenger_conf->autogenerated.nodejs_source_file,
|
383
|
+
&passenger_conf->autogenerated.nodejs_source_line);
|
384
|
+
|
385
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
386
|
+
}
|
387
|
+
|
388
|
+
static char *
|
389
|
+
passenger_conf_set_meteor_app_settings(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
390
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
391
|
+
|
392
|
+
passenger_conf->autogenerated.meteor_app_settings_explicitly_set = 1;
|
393
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
394
|
+
&passenger_conf->autogenerated.meteor_app_settings_source_file,
|
395
|
+
&passenger_conf->autogenerated.meteor_app_settings_source_line);
|
396
|
+
|
397
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
398
|
+
}
|
399
|
+
|
400
|
+
static char *
|
401
|
+
passenger_conf_set_app_env(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
402
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
403
|
+
|
404
|
+
passenger_conf->autogenerated.environment_explicitly_set = 1;
|
405
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
406
|
+
&passenger_conf->autogenerated.environment_source_file,
|
407
|
+
&passenger_conf->autogenerated.environment_source_line);
|
408
|
+
|
409
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
410
|
+
}
|
411
|
+
|
412
|
+
static char *
|
413
|
+
passenger_conf_set_friendly_error_pages(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
414
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
415
|
+
|
416
|
+
passenger_conf->autogenerated.friendly_error_pages_explicitly_set = 1;
|
417
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
418
|
+
&passenger_conf->autogenerated.friendly_error_pages_source_file,
|
419
|
+
&passenger_conf->autogenerated.friendly_error_pages_source_line);
|
420
|
+
|
421
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
422
|
+
}
|
423
|
+
|
424
|
+
static char *
|
425
|
+
passenger_conf_set_min_instances(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
426
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
427
|
+
|
428
|
+
passenger_conf->autogenerated.min_instances_explicitly_set = 1;
|
429
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
430
|
+
&passenger_conf->autogenerated.min_instances_source_file,
|
431
|
+
&passenger_conf->autogenerated.min_instances_source_line);
|
432
|
+
|
433
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
434
|
+
}
|
435
|
+
|
436
|
+
static char *
|
437
|
+
passenger_conf_set_max_instances_per_app(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
438
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
439
|
+
|
440
|
+
passenger_conf->autogenerated.max_instances_per_app_explicitly_set = 1;
|
441
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
442
|
+
&passenger_conf->autogenerated.max_instances_per_app_source_file,
|
443
|
+
&passenger_conf->autogenerated.max_instances_per_app_source_line);
|
444
|
+
|
445
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
446
|
+
}
|
447
|
+
|
448
|
+
static char *
|
449
|
+
passenger_conf_set_max_requests(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
450
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
451
|
+
|
452
|
+
passenger_conf->autogenerated.max_requests_explicitly_set = 1;
|
453
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
454
|
+
&passenger_conf->autogenerated.max_requests_source_file,
|
455
|
+
&passenger_conf->autogenerated.max_requests_source_line);
|
456
|
+
|
457
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
458
|
+
}
|
459
|
+
|
460
|
+
static char *
|
461
|
+
passenger_conf_set_start_timeout(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
462
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
463
|
+
|
464
|
+
passenger_conf->autogenerated.start_timeout_explicitly_set = 1;
|
465
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
466
|
+
&passenger_conf->autogenerated.start_timeout_source_file,
|
467
|
+
&passenger_conf->autogenerated.start_timeout_source_line);
|
468
|
+
|
469
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
470
|
+
}
|
471
|
+
|
472
|
+
static char *
|
473
|
+
passenger_conf_set_base_uri(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
474
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
475
|
+
|
476
|
+
passenger_conf->autogenerated.base_uris_explicitly_set = 1;
|
477
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
478
|
+
&passenger_conf->autogenerated.base_uris_source_file,
|
479
|
+
&passenger_conf->autogenerated.base_uris_source_line);
|
480
|
+
|
481
|
+
return ngx_conf_set_str_array_slot(cf, cmd, conf);
|
482
|
+
}
|
483
|
+
|
484
|
+
static char *
|
485
|
+
passenger_conf_set_document_root(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
486
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
487
|
+
|
488
|
+
passenger_conf->autogenerated.document_root_explicitly_set = 1;
|
489
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
490
|
+
&passenger_conf->autogenerated.document_root_source_file,
|
491
|
+
&passenger_conf->autogenerated.document_root_source_line);
|
492
|
+
|
493
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
494
|
+
}
|
495
|
+
|
496
|
+
static char *
|
497
|
+
passenger_conf_set_user(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
498
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
499
|
+
|
500
|
+
passenger_conf->autogenerated.user_explicitly_set = 1;
|
501
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
502
|
+
&passenger_conf->autogenerated.user_source_file,
|
503
|
+
&passenger_conf->autogenerated.user_source_line);
|
504
|
+
|
505
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
506
|
+
}
|
507
|
+
|
508
|
+
static char *
|
509
|
+
passenger_conf_set_group(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
510
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
511
|
+
|
512
|
+
passenger_conf->autogenerated.group_explicitly_set = 1;
|
513
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
514
|
+
&passenger_conf->autogenerated.group_source_file,
|
515
|
+
&passenger_conf->autogenerated.group_source_line);
|
516
|
+
|
517
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
518
|
+
}
|
519
|
+
|
520
|
+
static char *
|
521
|
+
passenger_conf_set_app_group_name(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
522
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
523
|
+
|
524
|
+
passenger_conf->autogenerated.app_group_name_explicitly_set = 1;
|
525
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
526
|
+
&passenger_conf->autogenerated.app_group_name_source_file,
|
527
|
+
&passenger_conf->autogenerated.app_group_name_source_line);
|
528
|
+
|
529
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
530
|
+
}
|
531
|
+
|
532
|
+
static char *
|
533
|
+
passenger_conf_set_app_root(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
534
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
535
|
+
|
536
|
+
passenger_conf->autogenerated.app_root_explicitly_set = 1;
|
537
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
538
|
+
&passenger_conf->autogenerated.app_root_source_file,
|
539
|
+
&passenger_conf->autogenerated.app_root_source_line);
|
540
|
+
|
541
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
542
|
+
}
|
543
|
+
|
544
|
+
static char *
|
545
|
+
passenger_conf_set_app_rights(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
546
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
547
|
+
|
548
|
+
passenger_conf->autogenerated.app_rights_explicitly_set = 1;
|
549
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
550
|
+
&passenger_conf->autogenerated.app_rights_source_file,
|
551
|
+
&passenger_conf->autogenerated.app_rights_source_line);
|
552
|
+
|
553
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
554
|
+
}
|
555
|
+
|
556
|
+
static char *
|
557
|
+
passenger_conf_set_debugger(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
558
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
559
|
+
|
560
|
+
passenger_conf->autogenerated.debugger_explicitly_set = 1;
|
561
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
562
|
+
&passenger_conf->autogenerated.debugger_source_file,
|
563
|
+
&passenger_conf->autogenerated.debugger_source_line);
|
564
|
+
|
565
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
566
|
+
}
|
567
|
+
|
568
|
+
static char *
|
569
|
+
passenger_conf_set_max_preloader_idle_time(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
570
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
571
|
+
|
572
|
+
passenger_conf->autogenerated.max_preloader_idle_time_explicitly_set = 1;
|
573
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
574
|
+
&passenger_conf->autogenerated.max_preloader_idle_time_source_file,
|
575
|
+
&passenger_conf->autogenerated.max_preloader_idle_time_source_line);
|
576
|
+
|
577
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
578
|
+
}
|
579
|
+
|
580
|
+
static char *
|
581
|
+
passenger_conf_set_env_var(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
582
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
583
|
+
|
584
|
+
passenger_conf->autogenerated.env_vars_explicitly_set = 1;
|
585
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
586
|
+
&passenger_conf->autogenerated.env_vars_source_file,
|
587
|
+
&passenger_conf->autogenerated.env_vars_source_line);
|
588
|
+
|
589
|
+
return ngx_conf_set_keyval_slot(cf, cmd, conf);
|
590
|
+
}
|
591
|
+
|
592
|
+
static char *
|
593
|
+
passenger_conf_set_set_header(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
594
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
595
|
+
|
596
|
+
passenger_conf->autogenerated.headers_source_explicitly_set = 1;
|
597
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
598
|
+
&passenger_conf->autogenerated.headers_source_source_file,
|
599
|
+
&passenger_conf->autogenerated.headers_source_source_line);
|
600
|
+
|
601
|
+
return ngx_conf_set_keyval_slot(cf, cmd, conf);
|
602
|
+
}
|
603
|
+
|
604
|
+
static char *
|
605
|
+
passenger_conf_set_pass_header(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
606
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
607
|
+
|
608
|
+
passenger_conf->autogenerated.upstream_config_pass_headers_explicitly_set = 1;
|
609
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
610
|
+
&passenger_conf->autogenerated.upstream_config_pass_headers_source_file,
|
611
|
+
&passenger_conf->autogenerated.upstream_config_pass_headers_source_line);
|
612
|
+
|
613
|
+
return ngx_conf_set_str_array_slot(cf, cmd, conf);
|
614
|
+
}
|
615
|
+
|
616
|
+
static char *
|
617
|
+
passenger_conf_set_headers_hash_max_size(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
618
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
619
|
+
|
620
|
+
passenger_conf->autogenerated.headers_hash_max_size_explicitly_set = 1;
|
621
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
622
|
+
&passenger_conf->autogenerated.headers_hash_max_size_source_file,
|
623
|
+
&passenger_conf->autogenerated.headers_hash_max_size_source_line);
|
624
|
+
|
625
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
626
|
+
}
|
627
|
+
|
628
|
+
static char *
|
629
|
+
passenger_conf_set_headers_hash_bucket_size(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
630
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
631
|
+
|
632
|
+
passenger_conf->autogenerated.headers_hash_bucket_size_explicitly_set = 1;
|
633
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
634
|
+
&passenger_conf->autogenerated.headers_hash_bucket_size_source_file,
|
635
|
+
&passenger_conf->autogenerated.headers_hash_bucket_size_source_line);
|
636
|
+
|
637
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
638
|
+
}
|
639
|
+
|
640
|
+
static char *
|
641
|
+
passenger_conf_set_ignore_client_abort(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
642
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
643
|
+
|
644
|
+
passenger_conf->autogenerated.upstream_config_ignore_client_abort_explicitly_set = 1;
|
645
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
646
|
+
&passenger_conf->autogenerated.upstream_config_ignore_client_abort_source_file,
|
647
|
+
&passenger_conf->autogenerated.upstream_config_ignore_client_abort_source_line);
|
648
|
+
|
649
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
650
|
+
}
|
651
|
+
|
652
|
+
static char *
|
653
|
+
passenger_conf_set_read_timeout(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
654
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
655
|
+
|
656
|
+
passenger_conf->autogenerated.upstream_config_read_timeout_explicitly_set = 1;
|
657
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
658
|
+
&passenger_conf->autogenerated.upstream_config_read_timeout_source_file,
|
659
|
+
&passenger_conf->autogenerated.upstream_config_read_timeout_source_line);
|
660
|
+
|
661
|
+
return ngx_conf_set_msec_slot(cf, cmd, conf);
|
662
|
+
}
|
663
|
+
|
664
|
+
static char *
|
665
|
+
passenger_conf_set_buffer_response(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
666
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
667
|
+
|
668
|
+
passenger_conf->autogenerated.upstream_config_buffering_explicitly_set = 1;
|
669
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
670
|
+
&passenger_conf->autogenerated.upstream_config_buffering_source_file,
|
671
|
+
&passenger_conf->autogenerated.upstream_config_buffering_source_line);
|
672
|
+
|
673
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
674
|
+
}
|
675
|
+
|
676
|
+
static char *
|
677
|
+
passenger_conf_set_intercept_errors(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
678
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
679
|
+
|
680
|
+
passenger_conf->autogenerated.upstream_config_intercept_errors_explicitly_set = 1;
|
681
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
682
|
+
&passenger_conf->autogenerated.upstream_config_intercept_errors_source_file,
|
683
|
+
&passenger_conf->autogenerated.upstream_config_intercept_errors_source_line);
|
684
|
+
|
685
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
686
|
+
}
|
687
|
+
|
688
|
+
static char *
|
689
|
+
passenger_conf_set_spawn_method(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
690
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
691
|
+
|
692
|
+
passenger_conf->autogenerated.spawn_method_explicitly_set = 1;
|
693
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
694
|
+
&passenger_conf->autogenerated.spawn_method_source_file,
|
695
|
+
&passenger_conf->autogenerated.spawn_method_source_line);
|
696
|
+
|
697
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
698
|
+
}
|
699
|
+
|
700
|
+
static char *
|
701
|
+
passenger_conf_set_load_shell_envvars(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
702
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
703
|
+
|
704
|
+
passenger_conf->autogenerated.load_shell_envvars_explicitly_set = 1;
|
705
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
706
|
+
&passenger_conf->autogenerated.load_shell_envvars_source_file,
|
707
|
+
&passenger_conf->autogenerated.load_shell_envvars_source_line);
|
708
|
+
|
709
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
710
|
+
}
|
711
|
+
|
712
|
+
static char *
|
713
|
+
passenger_conf_set_max_request_queue_size(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
714
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
715
|
+
|
716
|
+
passenger_conf->autogenerated.max_request_queue_size_explicitly_set = 1;
|
717
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
718
|
+
&passenger_conf->autogenerated.max_request_queue_size_source_file,
|
719
|
+
&passenger_conf->autogenerated.max_request_queue_size_source_line);
|
720
|
+
|
721
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
722
|
+
}
|
723
|
+
|
724
|
+
static char *
|
725
|
+
passenger_conf_set_request_queue_overflow_status_code(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
726
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
727
|
+
|
728
|
+
passenger_conf->autogenerated.request_queue_overflow_status_code_explicitly_set = 1;
|
729
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
730
|
+
&passenger_conf->autogenerated.request_queue_overflow_status_code_source_file,
|
731
|
+
&passenger_conf->autogenerated.request_queue_overflow_status_code_source_line);
|
732
|
+
|
733
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
734
|
+
}
|
735
|
+
|
736
|
+
static char *
|
737
|
+
passenger_conf_set_restart_dir(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
738
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
739
|
+
|
740
|
+
passenger_conf->autogenerated.restart_dir_explicitly_set = 1;
|
741
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
742
|
+
&passenger_conf->autogenerated.restart_dir_source_file,
|
743
|
+
&passenger_conf->autogenerated.restart_dir_source_line);
|
744
|
+
|
745
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
746
|
+
}
|
747
|
+
|
748
|
+
static char *
|
749
|
+
passenger_conf_set_app_type(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
750
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
751
|
+
|
752
|
+
passenger_conf->autogenerated.app_type_explicitly_set = 1;
|
753
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
754
|
+
&passenger_conf->autogenerated.app_type_source_file,
|
755
|
+
&passenger_conf->autogenerated.app_type_source_line);
|
756
|
+
|
757
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
758
|
+
}
|
759
|
+
|
760
|
+
static char *
|
761
|
+
passenger_conf_set_startup_file(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
762
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
763
|
+
|
764
|
+
passenger_conf->autogenerated.startup_file_explicitly_set = 1;
|
765
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
766
|
+
&passenger_conf->autogenerated.startup_file_source_file,
|
767
|
+
&passenger_conf->autogenerated.startup_file_source_line);
|
768
|
+
|
769
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
770
|
+
}
|
771
|
+
|
772
|
+
static char *
|
773
|
+
passenger_conf_set_sticky_sessions(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
774
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
775
|
+
|
776
|
+
passenger_conf->autogenerated.sticky_sessions_explicitly_set = 1;
|
777
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
778
|
+
&passenger_conf->autogenerated.sticky_sessions_source_file,
|
779
|
+
&passenger_conf->autogenerated.sticky_sessions_source_line);
|
780
|
+
|
781
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
782
|
+
}
|
783
|
+
|
784
|
+
static char *
|
785
|
+
passenger_conf_set_sticky_sessions_cookie_name(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
786
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
787
|
+
|
788
|
+
passenger_conf->autogenerated.sticky_sessions_cookie_name_explicitly_set = 1;
|
789
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
790
|
+
&passenger_conf->autogenerated.sticky_sessions_cookie_name_source_file,
|
791
|
+
&passenger_conf->autogenerated.sticky_sessions_cookie_name_source_line);
|
792
|
+
|
793
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
794
|
+
}
|
795
|
+
|
796
|
+
static char *
|
797
|
+
passenger_conf_set_vary_turbocache_by_cookie(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
798
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
799
|
+
|
800
|
+
passenger_conf->autogenerated.vary_turbocache_by_cookie_explicitly_set = 1;
|
801
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
802
|
+
&passenger_conf->autogenerated.vary_turbocache_by_cookie_source_file,
|
803
|
+
&passenger_conf->autogenerated.vary_turbocache_by_cookie_source_line);
|
804
|
+
|
805
|
+
return ngx_conf_set_str_slot(cf, cmd, conf);
|
806
|
+
}
|
807
|
+
|
808
|
+
static char *
|
809
|
+
passenger_conf_set_abort_websockets_on_process_shutdown(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
810
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
811
|
+
|
812
|
+
passenger_conf->autogenerated.abort_websockets_on_process_shutdown_explicitly_set = 1;
|
813
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
814
|
+
&passenger_conf->autogenerated.abort_websockets_on_process_shutdown_source_file,
|
815
|
+
&passenger_conf->autogenerated.abort_websockets_on_process_shutdown_source_line);
|
816
|
+
|
817
|
+
return ngx_conf_set_flag_slot(cf, cmd, conf);
|
818
|
+
}
|
819
|
+
|
820
|
+
static char *
|
821
|
+
passenger_conf_set_force_max_concurrent_requests_per_process(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
|
822
|
+
passenger_loc_conf_t *passenger_conf = conf;
|
823
|
+
|
824
|
+
passenger_conf->autogenerated.force_max_concurrent_requests_per_process_explicitly_set = 1;
|
825
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
826
|
+
&passenger_conf->autogenerated.force_max_concurrent_requests_per_process_source_file,
|
827
|
+
&passenger_conf->autogenerated.force_max_concurrent_requests_per_process_source_line);
|
828
|
+
|
829
|
+
return ngx_conf_set_num_slot(cf, cmd, conf);
|
830
|
+
}
|
831
|
+
|