passenger 5.1.12 → 5.2.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG +18 -1
- data/Rakefile +4 -1
- data/build/agent.rb +2 -2
- data/build/apache2.rb +17 -10
- data/build/basics.rb +18 -4
- data/build/common_library.rb +7 -3
- data/build/cxx_tests.rb +2 -7
- data/build/misc.rb +3 -1
- data/build/nginx.rb +11 -5
- data/build/oxt_tests.rb +0 -3
- data/build/packaging.rb +3 -2
- data/build/schema_printer.rb +103 -0
- data/build/support/cplusplus.rb +2 -2
- data/build/support/cxx_dependency_map.rb +2575 -868
- data/dev/ci/lib/functions.sh +1 -1
- data/dev/ci/lib/set-container-envvars.sh +1 -1
- data/dev/ci/lib/setup-container.sh +1 -1
- data/dev/ci/run-tests-natively +1 -1
- data/dev/ci/run-tests-with-docker +1 -1
- data/dev/ci/scripts/debug-console-wrapper.sh +1 -1
- data/dev/ci/scripts/docker-entrypoint-stage2.sh +1 -1
- data/dev/ci/scripts/docker-entrypoint.sh +1 -1
- data/dev/ci/scripts/inituidgid +1 -1
- data/dev/ci/scripts/run-tests-natively-stage2.sh +1 -1
- data/dev/ci/scripts/setup-host-natively.sh +1 -1
- data/dev/ci/setup-host +1 -1
- data/dev/ci/tests/apache2/run +1 -1
- data/dev/ci/tests/apache2/setup +1 -1
- data/dev/ci/tests/cxx/run +1 -1
- data/dev/ci/tests/cxx/setup +1 -1
- data/dev/ci/tests/debian/Jenkinsfile +0 -1
- data/dev/ci/tests/debian/run +1 -1
- data/dev/ci/tests/nginx-dynamic/run +1 -1
- data/dev/ci/tests/nginx-dynamic/setup +1 -1
- data/dev/ci/tests/nginx/run +1 -1
- data/dev/ci/tests/nginx/setup +1 -1
- data/dev/ci/tests/nodejs/run +1 -1
- data/dev/ci/tests/nodejs/setup +1 -1
- data/dev/ci/tests/rpm/run +1 -1
- data/dev/ci/tests/ruby/run +1 -1
- data/dev/ci/tests/ruby/setup +1 -1
- data/dev/ci/tests/source-packaging/run +1 -1
- data/dev/ci/tests/source-packaging/setup +1 -1
- data/dev/ci/tests/standalone/run +1 -1
- data/dev/ci/tests/standalone/setup +1 -1
- data/dev/configkit-schemas/index.json +1708 -0
- data/dev/configkit-schemas/update_schema_inline_comments.rb +118 -0
- data/dev/copy_boost_headers +13 -1
- data/dev/index_cxx_dependencies.rb +20 -7
- data/dev/vagrant/provision.sh +1 -1
- data/resources/mime.types +1 -0
- data/resources/templates/standalone/http.erb +1 -6
- data/src/agent/Core/AdminPanelConnector.h +550 -0
- data/src/agent/Core/ApiServer.h +159 -97
- data/src/agent/Core/ApplicationPool/Group.h +2 -0
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +3 -2
- data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +109 -0
- data/src/agent/Core/ApplicationPool/Implementation.cpp +5 -3
- data/src/agent/Core/ApplicationPool/Options.h +5 -6
- data/src/agent/Core/ApplicationPool/Pool.h +59 -2
- data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +3 -3
- data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +2 -2
- data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +6 -0
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +129 -0
- data/src/agent/Core/Config.h +475 -0
- data/src/agent/Core/ConfigChange.cpp +349 -0
- data/src/agent/Core/ConfigChange.h +54 -0
- data/src/agent/Core/Controller.h +35 -3
- data/src/agent/Core/Controller/CheckoutSession.cpp +1 -1
- data/src/agent/Core/Controller/Config.cpp +0 -2
- data/src/agent/Core/Controller/Config.h +168 -104
- data/src/agent/Core/Controller/ForwardResponse.cpp +1 -1
- data/src/agent/Core/Controller/InitRequest.cpp +14 -15
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +34 -44
- data/src/agent/Core/Controller/Request.h +0 -1
- data/src/agent/Core/CoreMain.cpp +236 -349
- data/src/agent/Core/OptionParser.h +75 -89
- data/src/agent/Core/SecurityUpdateChecker.h +263 -100
- data/src/agent/Core/SpawningKit/Config.h +6 -2
- data/src/agent/Core/SpawningKit/Spawner.h +0 -45
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +1 -0
- data/src/agent/Shared/ApiAccountUtils.h +318 -0
- data/src/agent/Shared/ApiServerUtils.h +3 -104
- data/src/agent/Shared/Fundamentals/Initialization.cpp +81 -44
- data/src/agent/Shared/Fundamentals/Initialization.h +12 -7
- data/src/agent/TempDirToucher/TempDirToucherMain.cpp +21 -0
- data/src/agent/Watchdog/AgentWatcher.cpp +1 -1
- data/src/agent/Watchdog/ApiServer.h +100 -14
- data/src/agent/Watchdog/Config.h +340 -0
- data/src/agent/Watchdog/CoreWatcher.cpp +27 -13
- data/src/agent/Watchdog/InstanceDirToucher.cpp +1 -1
- data/src/agent/Watchdog/WatchdogMain.cpp +190 -206
- data/src/apache2_module/Bucket.cpp +4 -0
- data/src/apache2_module/Bucket.h +7 -3
- data/src/apache2_module/CBindings.cpp +49 -0
- data/src/apache2_module/Config.cpp +242 -0
- data/src/apache2_module/Config.h +109 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +485 -0
- data/src/apache2_module/{ConfigurationCommands.cpp.cxxcodebuilder → ConfigGeneral/AutoGeneratedDefinitions.cpp.cxxcodebuilder} +29 -15
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +298 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp.cxxcodebuilder +171 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +854 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp.cxxcodebuilder +188 -0
- data/src/apache2_module/ConfigGeneral/ManifestGeneration.h +610 -0
- data/src/apache2_module/ConfigGeneral/SetterFuncs.h +65 -0
- data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +174 -0
- data/src/apache2_module/{MergeDirConfig.cpp.cxxcodebuilder → DirConfig/AutoGeneratedCreateFunction.cpp.cxxcodebuilder} +54 -32
- data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +113 -0
- data/src/apache2_module/{SetHeaders.cpp.cxxcodebuilder → DirConfig/AutoGeneratedHeaderSerialization.cpp.cxxcodebuilder} +34 -23
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +426 -0
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +165 -0
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +269 -0
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp.cxxcodebuilder +148 -0
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +534 -0
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h.cxxcodebuilder +230 -0
- data/src/apache2_module/DirectoryMapper.h +19 -16
- data/src/apache2_module/Hooks.cpp +124 -138
- data/src/apache2_module/Hooks.h +9 -14
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp +263 -0
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +152 -0
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +299 -0
- data/src/apache2_module/{ConfigurationFields.hpp.cxxcodebuilder → ServerConfig/AutoGeneratedStruct.h.cxxcodebuilder} +105 -18
- data/src/apache2_module/Utils.h +215 -0
- data/src/apache2_module/mod_passenger.c +16 -8
- data/src/cxx_supportlib/AppTypes.h +2 -0
- data/src/cxx_supportlib/ConfigKit/ConfigKit.h +1 -1
- data/src/cxx_supportlib/ConfigKit/DummyTranslator.h +8 -8
- data/src/cxx_supportlib/ConfigKit/IN_PRACTICE.md +7 -41
- data/src/cxx_supportlib/ConfigKit/PrefixTranslator.h +12 -66
- data/src/cxx_supportlib/ConfigKit/Schema.h +62 -11
- data/src/cxx_supportlib/ConfigKit/{ValidationUtils.h → SchemaUtils.h} +12 -3
- data/src/cxx_supportlib/ConfigKit/Store.h +17 -9
- data/src/cxx_supportlib/ConfigKit/SubComponentUtils.h +2 -1
- data/src/cxx_supportlib/ConfigKit/TableTranslator.h +13 -70
- data/src/cxx_supportlib/ConfigKit/Translator.h +125 -0
- data/src/cxx_supportlib/Constants.h +1 -3
- data/src/cxx_supportlib/FileTools/FileManip.cpp +297 -0
- data/src/cxx_supportlib/FileTools/FileManip.h +162 -0
- data/src/cxx_supportlib/{Utils → FileTools}/LargeFiles.cpp +6 -3
- data/src/cxx_supportlib/{Utils → FileTools}/LargeFiles.h +7 -5
- data/src/cxx_supportlib/FileTools/PathManip.cpp +240 -0
- data/src/cxx_supportlib/FileTools/PathManip.h +91 -0
- data/src/cxx_supportlib/FileTools/PathManipCBindings.cpp +62 -0
- data/src/{apache2_module/Configuration.h → cxx_supportlib/FileTools/PathManipCBindings.h} +12 -19
- data/src/cxx_supportlib/Hooks.h +19 -16
- data/src/cxx_supportlib/InstanceDirectory.h +11 -0
- data/src/cxx_supportlib/JsonTools/Autocast.h +79 -0
- data/src/cxx_supportlib/JsonTools/CBindings.cpp +364 -0
- data/src/cxx_supportlib/JsonTools/CBindings.h +101 -0
- data/src/cxx_supportlib/LoggingKit/Config.h +13 -0
- data/src/cxx_supportlib/LoggingKit/Context.h +5 -2
- data/src/cxx_supportlib/LoggingKit/Forward.h +0 -1
- data/src/cxx_supportlib/LoggingKit/Implementation.cpp +12 -4
- data/src/cxx_supportlib/ResourceLocator.h +15 -0
- data/src/cxx_supportlib/ServerKit/Config.h +156 -0
- data/src/cxx_supportlib/ServerKit/Context.h +59 -38
- data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +3 -2
- data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpServer.h +16 -2
- data/src/cxx_supportlib/ServerKit/Server.h +32 -15
- data/src/cxx_supportlib/Utils.cpp +0 -441
- data/src/cxx_supportlib/Utils.h +0 -158
- data/src/cxx_supportlib/Utils/Curl.h +1 -0
- data/src/cxx_supportlib/Utils/ProcessMetricsCollector.h +1 -0
- data/src/cxx_supportlib/Utils/StrIntUtilsNoStrictAliasing.cpp +2 -0
- data/src/cxx_supportlib/Utils/VariantMap.h +31 -0
- data/src/cxx_supportlib/WatchdogLauncher.cpp +7 -79
- data/src/cxx_supportlib/WatchdogLauncher.h +50 -53
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +981 -0
- data/src/cxx_supportlib/oxt/macros.hpp +9 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/COPYING +145 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/changelog.md +342 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/readme.md +49 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/base64/base64.hpp +178 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/client.hpp +33 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/close.hpp +342 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio.hpp +131 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio_ssl.hpp +39 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/chrono.hpp +68 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/connection_hdl.hpp +52 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/cpp11.hpp +162 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/functional.hpp +105 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/md5.hpp +448 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/memory.hpp +89 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/network.hpp +106 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/platforms.hpp +46 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/random.hpp +82 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/regex.hpp +59 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/stdint.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/system_error.hpp +84 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/thread.hpp +84 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/time.hpp +56 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/type_traits.hpp +65 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/concurrency/basic.hpp +46 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/concurrency/none.hpp +80 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_client.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_no_tls.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_no_tls_client.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/boost_config.hpp +72 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core.hpp +285 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core_client.hpp +294 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug.hpp +286 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug_asio.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug_asio_no_tls.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/minimal_client.hpp +72 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/minimal_server.hpp +312 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection.hpp +1651 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection_base.hpp +38 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint.hpp +700 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint_base.hpp +38 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/error.hpp +277 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/extension.hpp +102 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +128 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +752 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/frame.hpp +861 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/constants.hpp +308 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/parser.hpp +196 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/request.hpp +191 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/response.hpp +266 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/parser.hpp +619 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/request.hpp +124 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/response.hpp +188 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/connection_impl.hpp +2372 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/endpoint_impl.hpp +269 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/utilities_impl.hpp +87 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/basic.hpp +199 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/levels.hpp +203 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/stub.hpp +119 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/syslog.hpp +146 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/alloc.hpp +105 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/message.hpp +340 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/pool.hpp +229 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/base.hpp +299 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi00.hpp +462 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi07.hpp +78 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi08.hpp +83 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi13.hpp +1056 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/processor.hpp +407 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/random/none.hpp +60 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/random/random_device.hpp +80 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/client_endpoint.hpp +173 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/server_endpoint.hpp +190 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/server.hpp +33 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/sha1/sha1.hpp +189 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/base.hpp +232 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/connection.hpp +1204 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/endpoint.hpp +1147 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/base.hpp +159 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/none.hpp +370 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/tls.hpp +484 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/connection.hpp +238 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/endpoint.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/base.hpp +104 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/connection.hpp +412 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/endpoint.hpp +140 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/base.hpp +133 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/connection.hpp +714 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/endpoint.hpp +222 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/base.hpp +95 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/connection.hpp +286 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/endpoint.hpp +140 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/uri.hpp +355 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utf8_validator.hpp +154 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utilities.hpp +182 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/version.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +951 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +520 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +258 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +942 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +567 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +697 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +1519 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +1137 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +288 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +569 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +854 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +371 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +521 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +2241 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +246 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +260 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +238 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +483 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +825 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/datagram_socket_service.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer_service.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/addressof.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +491 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +385 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +192 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +1050 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +294 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +229 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +208 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +244 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/function.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +161 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +480 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +333 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +453 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +432 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +688 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +167 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +307 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +498 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +126 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +76 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_serial_port_service.ipp +153 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +269 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +315 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +649 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +3470 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/task_io_service.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/task_io_service.ipp +476 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +136 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +500 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +216 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +324 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_serial_port_service.hpp +236 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +460 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +452 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +170 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +123 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +133 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +221 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/shared_ptr.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +218 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +336 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +318 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +410 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +144 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service_operation.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service_thread_info.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +333 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/weak_ptr.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/win_iocp_serial_port_service.hpp +230 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +293 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +345 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +123 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +124 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_type.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +360 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +340 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +432 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_service.hpp +156 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_service.ipp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +755 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +812 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +1149 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +556 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +355 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.cpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +767 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +827 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +772 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +202 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +243 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +248 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +265 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +262 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +246 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +206 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +571 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +228 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +300 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_service.hpp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +492 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +364 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor_service.hpp +262 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/raw_socket_service.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +633 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +666 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +925 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/seq_packet_socket_service.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +169 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_service.hpp +255 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_service.hpp +136 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_acceptor_service.hpp +308 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +522 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/basic_context.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +789 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_service.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +327 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +351 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +115 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +1177 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +168 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/basic_context.hpp +436 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/context_service.hpp +176 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_context_service.hpp +396 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_operation.hpp +526 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_stream_service.hpp +573 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/stream.hpp +503 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/stream_service.hpp +186 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +758 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_service.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_socket_service.hpp +382 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +94 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/waitable_timer_service.hpp +170 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_handle.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +378 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +361 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle_service.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle_service.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle_service.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +620 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +672 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/chrono.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/chrono_io.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/chrono.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/chrono.hpp +242 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/process_cpu_clocks.hpp +356 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/thread_clock.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/chrono.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp +354 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/thread_clock.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/process_cpu_clocks.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/thread_clock.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/no_warning/signed_unsigned_cmp.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/scan_keyword.hpp +163 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/floor.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/include.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_get.hpp +593 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +295 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_put.hpp +317 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +1003 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/ios_base_state.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_get.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +1243 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_put.hpp +261 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_units.hpp +260 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/ios_base_state_ptr.hpp +437 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/manip_base.hpp +101 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/to_string.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io_v1/chrono_io.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/process_cpu_clocks.hpp +525 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/round.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/thread_clock.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/typeof/boost/chrono/chrono.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/typeof/boost/ratio.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +460 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_mask.hpp +126 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_min_max.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/chrono.cpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/process_cpu_clocks.cpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/thread_clock.cpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/random/src/random_device.cpp +250 -0
- data/src/cxx_supportlib/vendor-modified/boost/pointer_cast.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/random.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/additive_combine.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/bernoulli_distribution.hpp +197 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/beta_distribution.hpp +184 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/binomial_distribution.hpp +434 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/cauchy_distribution.hpp +214 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/chi_squared_distribution.hpp +209 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/auto_link.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/config.hpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/const_mod.hpp +216 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/disable_warnings.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/enable_warnings.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/generator_bits.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/generator_seed_seq.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/int_float_pair.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/integer_log2.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/iterator_mixin.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/large_arithmetic.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/operators.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/polynomial.hpp +384 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/ptr_helper.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed.hpp +115 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed_impl.hpp +398 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/signed_unsigned_tools.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/uniform_int_float.hpp +76 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/vector_io.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/discard_block.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/discrete_distribution.hpp +636 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/exponential_distribution.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/extreme_value_distribution.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/fisher_f_distribution.hpp +183 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/gamma_distribution.hpp +292 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/generate_canonical.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/geometric_distribution.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +883 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/independent_bits.hpp +271 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/lagged_fibonacci.hpp +537 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/laplace_distribution.hpp +175 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_congruential.hpp +466 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_feedback_shift.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/lognormal_distribution.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/mersenne_twister.hpp +682 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/negative_binomial_distribution.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/non_central_chi_squared_distribution.hpp +221 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/normal_distribution.hpp +374 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/piecewise_constant_distribution.hpp +466 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/piecewise_linear_distribution.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/poisson_distribution.hpp +360 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/random_device.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/random_number_generator.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/ranlux.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/seed_seq.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_order.hpp +269 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_output.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/student_t_distribution.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +613 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/taus88.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/traits.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/triangle_distribution.hpp +232 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_01.hpp +257 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int_distribution.hpp +419 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_on_sphere.hpp +284 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_smallint.hpp +307 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/variate_generator.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/weibull_distribution.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/xor_combine.hpp +208 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio.hpp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/ratio_io.hpp +1342 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/include.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/abs.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/arithmetic.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/comparison.hpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/divides.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/equal_to.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/gcd.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater_equal.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/lcm.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less_equal.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/minus.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/negate.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/not_equal_to.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/numeric_cast.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/plus.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_c_tag.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_constant.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/sign.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/times.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_io.hpp +1076 -0
- data/src/cxx_supportlib/vendor-modified/boost/rational.hpp +1002 -0
- data/src/cxx_supportlib/vendor-modified/modp_b64.cpp +11 -0
- data/src/helper-scripts/rack-preloader.rb +1 -1
- data/src/nginx_module/{ConfigurationCommands.c → ConfigGeneral/AutoGeneratedDefinitions.c} +351 -134
- data/src/nginx_module/{ConfigurationCommands.c.cxxcodebuilder → ConfigGeneral/AutoGeneratedDefinitions.c.cxxcodebuilder} +14 -25
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +396 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c.cxxcodebuilder +160 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +831 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c.cxxcodebuilder +168 -0
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.c +887 -0
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.h +100 -0
- data/src/nginx_module/Configuration.c +165 -621
- data/src/nginx_module/Configuration.h +43 -33
- data/src/nginx_module/ContentHandler.c +46 -40
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +282 -0
- data/src/nginx_module/{CreateLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder} +43 -17
- data/src/nginx_module/{CacheLocationConfig.c → LocationConfig/AutoGeneratedHeaderSerialization.c} +148 -180
- data/src/nginx_module/{CacheLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedHeaderSerialization.c.cxxcodebuilder} +13 -11
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +595 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +190 -0
- data/src/nginx_module/{MergeLocationConfig.c → LocationConfig/AutoGeneratedMergeFunction.c} +32 -42
- data/src/nginx_module/{MergeLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedMergeFunction.c.cxxcodebuilder} +18 -11
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +220 -0
- data/src/nginx_module/{LocationConfig.h.cxxcodebuilder → LocationConfig/AutoGeneratedStruct.h.cxxcodebuilder} +70 -48
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c +163 -0
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder +125 -0
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c +303 -0
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +173 -0
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h +133 -0
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h.cxxcodebuilder +154 -0
- data/src/nginx_module/config +13 -4
- data/src/nginx_module/ngx_http_passenger_module.c +154 -84
- data/src/ruby_supportlib/phusion_passenger.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +613 -131
- data/src/ruby_supportlib/phusion_passenger/apache2/config_utils.rb +52 -0
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +18 -4
- data/src/ruby_supportlib/phusion_passenger/config/main.rb +2 -0
- data/src/ruby_supportlib/phusion_passenger/config/system_properties_command.rb +104 -0
- data/src/ruby_supportlib/phusion_passenger/constants.rb +0 -2
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +470 -138
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info.rb +17 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +11 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +7 -7
- data/src/ruby_supportlib/phusion_passenger/platform_info/networking.rb +293 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +8 -54
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +1 -5
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +4 -7
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller.rb +1 -1
- data/src/schema_printer/SchemaPrinterMain.cpp +78 -0
- data/src/schema_printer/SchemaPrinterMain.cpp.cxxcodebuilder +116 -0
- metadata +671 -30
- data/src/apache2_module/Configuration.cpp +0 -737
- data/src/apache2_module/Configuration.hpp +0 -274
- data/src/apache2_module/ConfigurationCommands.cpp +0 -199
- data/src/apache2_module/ConfigurationFields.hpp +0 -187
- data/src/apache2_module/ConfigurationSetters.cpp +0 -436
- data/src/apache2_module/ConfigurationSetters.cpp.cxxcodebuilder +0 -144
- data/src/apache2_module/CreateDirConfig.cpp +0 -68
- data/src/apache2_module/CreateDirConfig.cpp.cxxcodebuilder +0 -81
- data/src/apache2_module/MergeDirConfig.cpp +0 -155
- data/src/apache2_module/SetHeaders.cpp +0 -111
- data/src/nginx_module/CreateLocationConfig.c +0 -100
- data/src/nginx_module/LocationConfig.h +0 -95
@@ -0,0 +1,52 @@
|
|
1
|
+
# Phusion Passenger - https://www.phusionpassenger.com/
|
2
|
+
# Copyright (c) 2014-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
|
+
module PhusionPassenger
|
26
|
+
module Apache2
|
27
|
+
module ConfigUtils
|
28
|
+
class << self
|
29
|
+
def initialize!(options)
|
30
|
+
sort(options)
|
31
|
+
set_field_defaults(options)
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
def sort(options)
|
36
|
+
options.sort! do |a, b|
|
37
|
+
a[:name] <=> b[:name]
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def set_field_defaults(options)
|
42
|
+
options.each do |option|
|
43
|
+
option[:context] ||= :application
|
44
|
+
if option[:context] == :location
|
45
|
+
option[:htaccess_context] ||= ['OR_OPTIONS']
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end # module PhusionPassenger
|
@@ -274,6 +274,12 @@ COMMON_LIBRARY = CommonLibraryBuilder.new do
|
|
274
274
|
define_component 'Exceptions.o',
|
275
275
|
:source => 'Exceptions.cpp',
|
276
276
|
:category => :base
|
277
|
+
define_component 'FileTools/PathManip.o',
|
278
|
+
:source => 'FileTools/PathManip.cpp',
|
279
|
+
:category => :base
|
280
|
+
define_component 'FileTools/FileManip.o',
|
281
|
+
:source => 'FileTools/FileManip.cpp',
|
282
|
+
:category => :base
|
277
283
|
define_component 'ProcessManagement/Spawn.o',
|
278
284
|
:source => 'ProcessManagement/Spawn.cpp',
|
279
285
|
:category => :base
|
@@ -316,9 +322,6 @@ COMMON_LIBRARY = CommonLibraryBuilder.new do
|
|
316
322
|
define_component 'Utils/CachedFileStat.o',
|
317
323
|
:source => 'Utils/CachedFileStat.cpp',
|
318
324
|
:category => :other
|
319
|
-
define_component 'Utils/LargeFiles.o',
|
320
|
-
:source => 'Utils/LargeFiles.cpp',
|
321
|
-
:category => :other
|
322
325
|
define_component 'WatchdogLauncher.o',
|
323
326
|
:source => 'WatchdogLauncher.cpp',
|
324
327
|
:category => :other
|
@@ -357,6 +360,16 @@ COMMON_LIBRARY = CommonLibraryBuilder.new do
|
|
357
360
|
define_component 'UnionStationFilterSupport.o',
|
358
361
|
:source => 'UnionStationFilterSupport.cpp',
|
359
362
|
:category => :union_station_filter
|
363
|
+
|
364
|
+
define_component 'JsonTools/CBindings.o',
|
365
|
+
:source => 'JsonTools/CBindings.cpp',
|
366
|
+
:category => :json_tools
|
367
|
+
define_component 'FileTools/LargeFiles.o',
|
368
|
+
:source => 'FileTools/LargeFiles.cpp',
|
369
|
+
:category => :file_tools_large_files
|
370
|
+
define_component 'FileTools/PathManipCBindings.o',
|
371
|
+
:source => 'FileTools/PathManipCBindings.cpp',
|
372
|
+
:category => :file_tools_path_manip_cbindings
|
360
373
|
define_component 'ProcessManagement/Ruby.o',
|
361
374
|
:source => 'ProcessManagement/Ruby.cpp',
|
362
375
|
:category => :process_management_ruby
|
@@ -365,4 +378,5 @@ end
|
|
365
378
|
# A subset of the objects are linked to the Nginx binary. This defines
|
366
379
|
# what those objects are.
|
367
380
|
NGINX_LIBS_SELECTOR = [:base, 'WatchdogLauncher.o', 'AppTypes.o',
|
368
|
-
'Utils/CachedFileStat.o', '
|
381
|
+
'Utils/CachedFileStat.o', 'JsonTools/CBindings.o',
|
382
|
+
'FileTools/PathManipCBindings.o']
|
@@ -45,6 +45,7 @@ module PhusionPassenger
|
|
45
45
|
["compile-nginx-engine", "CompileNginxEngineCommand"],
|
46
46
|
|
47
47
|
["system-metrics", "SystemMetricsCommand"],
|
48
|
+
["system-properties", "SystemPropertiesCommand"],
|
48
49
|
["about", "AboutCommand"]
|
49
50
|
]
|
50
51
|
|
@@ -118,6 +119,7 @@ module PhusionPassenger
|
|
118
119
|
puts
|
119
120
|
puts "Miscellaneous commands:"
|
120
121
|
puts " system-metrics Display system metrics"
|
122
|
+
puts " system-properties Display system properties"
|
121
123
|
puts
|
122
124
|
puts "Run 'passenger-config <COMMAND> --help' for more information about each"
|
123
125
|
puts "command."
|
@@ -0,0 +1,104 @@
|
|
1
|
+
# frozen_string_literal: true
|
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
|
+
require 'socket'
|
27
|
+
PhusionPassenger.require_passenger_lib 'constants'
|
28
|
+
PhusionPassenger.require_passenger_lib 'config/command'
|
29
|
+
PhusionPassenger.require_passenger_lib 'utils/json'
|
30
|
+
PhusionPassenger.require_passenger_lib 'platform_info/operating_system'
|
31
|
+
PhusionPassenger.require_passenger_lib 'platform_info/networking'
|
32
|
+
PhusionPassenger.require_passenger_lib 'platform_info/linux'
|
33
|
+
|
34
|
+
module PhusionPassenger
|
35
|
+
module Config
|
36
|
+
|
37
|
+
class SystemPropertiesCommand < Command
|
38
|
+
def run
|
39
|
+
# Output format must be compatible with Appminton
|
40
|
+
# "get server_properties" protocol command.
|
41
|
+
network_interfaces = PlatformInfo.network_interfaces
|
42
|
+
default_network_interfaces = PlatformInfo.default_network_interfaces
|
43
|
+
puts PhusionPassenger::Utils::JSON.generate(
|
44
|
+
:ipv4_addresses => ip_addresses(network_interfaces, :ipv4, default_network_interfaces),
|
45
|
+
:ipv6_addresses => ip_addresses(network_interfaces, :ipv6, default_network_interfaces),
|
46
|
+
:default_ipv4 => default_ip(network_interfaces, :ipv4, default_network_interfaces),
|
47
|
+
:default_ipv6 => default_ip(network_interfaces, :ipv6, default_network_interfaces),
|
48
|
+
:network_interfaces => network_interfaces,
|
49
|
+
:hostname => Socket.gethostname,
|
50
|
+
:fqdn => fqdn,
|
51
|
+
:os => os
|
52
|
+
)
|
53
|
+
end
|
54
|
+
|
55
|
+
private
|
56
|
+
def ip_addresses(network_interfaces, type, default_network_interfaces)
|
57
|
+
result = network_interfaces.map { |iface| iface[type] }.flatten
|
58
|
+
device = default_network_interfaces[type]
|
59
|
+
if device && device != :unknown
|
60
|
+
default_iface = network_interfaces.find do |iface|
|
61
|
+
iface[:device] == device
|
62
|
+
end
|
63
|
+
result << default_iface[type].first
|
64
|
+
end
|
65
|
+
result.uniq!
|
66
|
+
result
|
67
|
+
end
|
68
|
+
|
69
|
+
def default_ip(network_interfaces, type, default_network_interfaces)
|
70
|
+
device = default_network_interfaces[type]
|
71
|
+
if device == :unknown
|
72
|
+
'<UNKNOWN>'
|
73
|
+
elsif device
|
74
|
+
result = network_interfaces.find do |iface|
|
75
|
+
iface[:device] == device
|
76
|
+
end
|
77
|
+
result[type].first
|
78
|
+
else
|
79
|
+
nil
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def fqdn
|
84
|
+
hostname = PlatformInfo.find_command('hostname')
|
85
|
+
if hostname
|
86
|
+
`#{Shellwords.escape hostname} -f`.strip
|
87
|
+
else
|
88
|
+
nil
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
def os
|
93
|
+
{
|
94
|
+
:simple_name => PlatformInfo.os_name_simple,
|
95
|
+
:full_name => PlatformInfo.os_name_full,
|
96
|
+
:version => PlatformInfo.os_version,
|
97
|
+
:linux_distro => PlatformInfo.linux_distro,
|
98
|
+
:linux_distro_tags => PlatformInfo.linux_distro_tags
|
99
|
+
}
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
end # module Config
|
104
|
+
end # module PhusionPassenger
|
@@ -69,8 +69,6 @@ module PhusionPassenger
|
|
69
69
|
DEFAULT_ANALYTICS_LOG_USER = DEFAULT_WEB_APP_USER
|
70
70
|
DEFAULT_ANALYTICS_LOG_GROUP = ""
|
71
71
|
DEFAULT_ANALYTICS_LOG_PERMISSIONS = "u=rwx,g=rx,o=rx"
|
72
|
-
DEFAULT_UNION_STATION_GATEWAY_ADDRESS = "gateway.unionstationapp.com"
|
73
|
-
DEFAULT_UNION_STATION_GATEWAY_PORT = 443
|
74
72
|
DEFAULT_HTTP_SERVER_LISTEN_ADDRESS = "tcp://127.0.0.1:3000"
|
75
73
|
DEFAULT_LVE_MIN_UID = 500
|
76
74
|
|
@@ -22,7 +22,7 @@
|
|
22
22
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
23
|
# THE SOFTWARE.
|
24
24
|
|
25
|
-
# This file defines all supported Nginx
|
25
|
+
# This file defines all supported Nginx configuration options. The
|
26
26
|
# build system automatically generates the corresponding Nginx module boilerplate
|
27
27
|
# code from the definitions in this file.
|
28
28
|
#
|
@@ -31,25 +31,36 @@
|
|
31
31
|
#
|
32
32
|
# The following boilerplate code is generated:
|
33
33
|
#
|
34
|
-
# * ngx_command_t array members (
|
35
|
-
# *
|
36
|
-
# *
|
37
|
-
# *
|
38
|
-
# *
|
34
|
+
# * ngx_command_t array members (ConfigGeneral/AutoGeneratedDefinitions.c.cxxcodebuilder)
|
35
|
+
# * Configuration structure definition ({MainConfig,LocationConfig}/AutoGeneratedStruct.h.cxxcodebuilder)
|
36
|
+
# * Configuration structure initialization ({MainConfig/LocationConfig}/AutoGeneratedCreateFunction.c.cxxcodebuilder)
|
37
|
+
# * Configuration merging (LocationConfig/AutoGeneratedMergeFunction.c.cxxcodebuilder)
|
38
|
+
# * Struct field setter functions (ConfigGeneral/AutoGeneratedSetterFuncs.cpp.cxxcodebuilder)
|
39
|
+
# * Nginx module <-> Core headers serialization code (LocationConfig/AutoGeneratedHeaderSerialization.c.cxxcodebuilder)
|
39
40
|
#
|
40
41
|
# Options:
|
41
42
|
#
|
42
43
|
# * name - The configuration option name. Required.
|
44
|
+
# * scope - The scope that applies to this configuration. Required. One of:
|
45
|
+
# :global, :application, :location
|
43
46
|
# * context - The context in which this configuration option is valid.
|
44
47
|
# Defaults to [:main, :srv, :loc, :lif]
|
45
48
|
# * type - This configuration option's value type. Allowed types:
|
46
49
|
# :string, :integer, :uinteger, :flag, :string_array, :string_keyval,
|
47
|
-
# :path
|
50
|
+
# :path, :msec
|
51
|
+
# * default - A static default value. Set during configuration merging,
|
52
|
+
# and reported in the tracking code that generates the
|
53
|
+
# configuration manifest.
|
54
|
+
# * dynamic_default - If this option has a default, but it's dynamically inferred
|
55
|
+
# (and not a static value) then set this option to a human-readable
|
56
|
+
# description that explains how the default is dynamically inferred.
|
57
|
+
# Reported in the tracking code that generates the configuration
|
58
|
+
# manifest.
|
48
59
|
# * take - Tells Nginx how many parameters and what kind of parameter
|
49
60
|
# this configuration option takes. It should be set to a string
|
50
61
|
# such as "NGX_CONF_FLAG".
|
51
62
|
# By default this is automatically inferred from `type`: for
|
52
|
-
# example if `type` is :string then ConfigurationCommands.
|
63
|
+
# example if `type` is :string then ConfigurationCommands.cxxcodebuilder.erb
|
53
64
|
# will infer that `NGX_CONF_TAKE1` should be used.
|
54
65
|
# * function - The name of the function that should be used to store the
|
55
66
|
# configuration value into the corresponding structure. This function
|
@@ -62,7 +73,7 @@
|
|
62
73
|
# * struct - The type of the struct that the field is contained in. Something like
|
63
74
|
# "NGX_HTTP_LOC_CONF_OFFSET" (which is also the default).
|
64
75
|
# * field - The name that should be used for the auto-generated field in
|
65
|
-
# the
|
76
|
+
# the configuration structure. Defaults to the configuration
|
66
77
|
# name without the 'passenger_' prefix. Set this to nil if you do not
|
67
78
|
# want a structure field to be auto-generated. If the field name contains
|
68
79
|
# a dot (.e.g `upstream_config.pass_headers`) then the structure field will
|
@@ -76,276 +87,507 @@
|
|
76
87
|
# will disable auto-generation of CGI header generation code. You are
|
77
88
|
# then responsible for writing CGI header passing code yourself in
|
78
89
|
# ContentHandler.c.
|
79
|
-
# *
|
90
|
+
# * auto_generate_nginx_create_code - Whether configuration initialization
|
91
|
+
# code should be automatically generated. Defaults to true. If you set
|
92
|
+
# this to false then you are responsible for writing initialization code
|
93
|
+
# yourself in Configuration.c.
|
94
|
+
# * auto_generate_nginx_merge_code - Whether configuration merging
|
80
95
|
# code should be automatically generated. Defaults to true. If you set
|
81
96
|
# this to false then you are responsible for writing merging code
|
82
97
|
# yourself in Configuration.c.
|
98
|
+
# * auto_generate_nginx_tracking_code - Whether configuration hierarchy
|
99
|
+
# tracking code should be automatically generated. Defaults to true.
|
100
|
+
# If you set this to false then you are responsible for writing
|
101
|
+
# configuration tracking code yourself in Configuration.c.
|
83
102
|
# * alias_for - Set this if this configuration option is an alias for another
|
84
103
|
# option. Alias definitions must only have the `name` and `alias_for`
|
85
104
|
# fields, nothing else.
|
86
105
|
|
106
|
+
PhusionPassenger.require_passenger_lib 'constants'
|
87
107
|
|
88
|
-
|
108
|
+
NGINX_CONFIGURATION_OPTIONS = [
|
109
|
+
{
|
110
|
+
:name => 'passenger_root',
|
111
|
+
:scope => :global,
|
112
|
+
:type => :string,
|
113
|
+
:context => [:main],
|
114
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET',
|
115
|
+
:field => 'root_dir'
|
116
|
+
},
|
117
|
+
{
|
118
|
+
:name => 'passenger_ctl',
|
119
|
+
:scope => :global,
|
120
|
+
:type => :string_keyval,
|
121
|
+
:context => [:main],
|
122
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
123
|
+
},
|
124
|
+
{
|
125
|
+
:name => 'passenger_abort_on_startup_error',
|
126
|
+
:scope => :global,
|
127
|
+
:type => :flag,
|
128
|
+
:default => false,
|
129
|
+
:context => [:main],
|
130
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
131
|
+
},
|
132
|
+
{
|
133
|
+
:name => 'passenger_log_level',
|
134
|
+
:scope => :global,
|
135
|
+
:type => :uinteger,
|
136
|
+
:default => DEFAULT_LOG_LEVEL,
|
137
|
+
:context => [:main],
|
138
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
139
|
+
},
|
140
|
+
{
|
141
|
+
:name => 'passenger_log_file',
|
142
|
+
:scope => :global,
|
143
|
+
:type => :string,
|
144
|
+
:dynamic_default => "Nginx's global error log",
|
145
|
+
:context => [:main],
|
146
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
147
|
+
},
|
148
|
+
{
|
149
|
+
:name => 'passenger_file_descriptor_log_file',
|
150
|
+
:scope => :global,
|
151
|
+
:type => :string,
|
152
|
+
:context => [:main],
|
153
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
154
|
+
},
|
155
|
+
{
|
156
|
+
:name => 'passenger_data_buffer_dir',
|
157
|
+
:scope => :global,
|
158
|
+
:type => :string,
|
159
|
+
:dynamic_default => '$TMPDIR, or if not given, /tmp',
|
160
|
+
:context => [:main],
|
161
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
162
|
+
},
|
89
163
|
{
|
90
164
|
:name => 'passenger_socket_backlog',
|
91
|
-
:
|
165
|
+
:scope => :global,
|
166
|
+
:type => :uinteger,
|
167
|
+
:default => DEFAULT_SOCKET_BACKLOG,
|
92
168
|
:context => [:main],
|
93
169
|
:struct => "NGX_HTTP_MAIN_CONF_OFFSET"
|
94
170
|
},
|
95
171
|
{
|
96
172
|
:name => 'passenger_core_file_descriptor_ulimit',
|
173
|
+
:scope => :global,
|
97
174
|
:type => :uinteger,
|
175
|
+
:dynamic_default => 'The ulimits environment under which Nginx was started',
|
98
176
|
:context => [:main],
|
99
177
|
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
100
178
|
},
|
101
179
|
{
|
102
|
-
:name => '
|
180
|
+
:name => 'passenger_disable_security_update_check',
|
181
|
+
:scope => :global,
|
103
182
|
:type => :flag,
|
183
|
+
:default => false,
|
104
184
|
:context => [:main],
|
105
|
-
:struct =>
|
185
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
106
186
|
},
|
107
187
|
{
|
108
|
-
:name => '
|
188
|
+
:name => 'passenger_security_update_check_proxy',
|
189
|
+
:scope => :global,
|
109
190
|
:type => :string,
|
110
191
|
:context => [:main],
|
111
|
-
:struct =>
|
192
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
193
|
+
},
|
194
|
+
{
|
195
|
+
:name => 'passenger_pre_start',
|
196
|
+
:scope => :global,
|
197
|
+
:type => :string_array,
|
198
|
+
:context => [:main],
|
199
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET',
|
200
|
+
:field => 'prestart_uris'
|
201
|
+
},
|
202
|
+
{
|
203
|
+
:name => 'passenger_instance_registry_dir',
|
204
|
+
:scope => :global,
|
205
|
+
:type => :string,
|
206
|
+
:dynamic_default => 'Either /var/run/passenger-instreg, $TMPDIR, or /tmp (see docs)',
|
207
|
+
:context => [:main],
|
208
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
209
|
+
},
|
210
|
+
{
|
211
|
+
:name => 'passenger_turbocaching',
|
212
|
+
:scope => :global,
|
213
|
+
:type => :flag,
|
214
|
+
:default => true,
|
215
|
+
:context => [:main],
|
216
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
217
|
+
},
|
218
|
+
{
|
219
|
+
:name => 'passenger_user_switching',
|
220
|
+
:scope => :global,
|
221
|
+
:type => :flag,
|
222
|
+
:default => true,
|
223
|
+
:context => [:main],
|
224
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
225
|
+
},
|
226
|
+
{
|
227
|
+
:name => 'passenger_default_user',
|
228
|
+
:scope => :global,
|
229
|
+
:type => :string,
|
230
|
+
:default => PASSENGER_DEFAULT_USER,
|
231
|
+
:context => [:main],
|
232
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
233
|
+
},
|
234
|
+
{
|
235
|
+
:name => 'passenger_default_group',
|
236
|
+
:scope => :global,
|
237
|
+
:type => :string,
|
238
|
+
:dynamic_default => 'The primary group of passenger_default_user',
|
239
|
+
:context => [:main],
|
240
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
241
|
+
},
|
242
|
+
{
|
243
|
+
:name => 'passenger_max_pool_size',
|
244
|
+
:scope => :global,
|
245
|
+
:type => :uinteger,
|
246
|
+
:default => DEFAULT_MAX_POOL_SIZE,
|
247
|
+
:context => [:main],
|
248
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
249
|
+
},
|
250
|
+
{
|
251
|
+
:name => 'passenger_pool_idle_time',
|
252
|
+
:scope => :global,
|
253
|
+
:type => :uinteger,
|
254
|
+
:default => DEFAULT_POOL_IDLE_TIME,
|
255
|
+
:context => [:main],
|
256
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
257
|
+
},
|
258
|
+
{
|
259
|
+
:name => 'passenger_response_buffer_high_watermark',
|
260
|
+
:scope => :global,
|
261
|
+
:type => :uinteger,
|
262
|
+
:default => DEFAULT_RESPONSE_BUFFER_HIGH_WATERMARK,
|
263
|
+
:context => [:main],
|
264
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
265
|
+
},
|
266
|
+
{
|
267
|
+
:name => 'passenger_stat_throttle_rate',
|
268
|
+
:scope => :global,
|
269
|
+
:type => :uinteger,
|
270
|
+
:default => DEFAULT_STAT_THROTTLE_RATE,
|
271
|
+
:context => [:main],
|
272
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
273
|
+
},
|
274
|
+
{
|
275
|
+
:name => 'passenger_show_version_in_header',
|
276
|
+
:scope => :global,
|
277
|
+
:type => :flag,
|
278
|
+
:default => true,
|
279
|
+
:context => [:main],
|
280
|
+
:struct => 'NGX_HTTP_MAIN_CONF_OFFSET'
|
112
281
|
},
|
113
282
|
{
|
114
283
|
:name => 'passenger_app_file_descriptor_ulimit',
|
115
|
-
:
|
284
|
+
:scope => :global,
|
285
|
+
:type => :uinteger,
|
286
|
+
:dynamic_default => 'passenger_core_file_descriptor_ulimit'
|
116
287
|
},
|
117
288
|
{
|
118
289
|
:name => 'passenger_enabled',
|
290
|
+
:scope => :location,
|
119
291
|
:type => :flag,
|
292
|
+
:default => false,
|
120
293
|
:function => 'passenger_enabled',
|
121
294
|
:field => 'enabled',
|
122
295
|
:header => nil
|
123
296
|
},
|
124
297
|
{
|
125
|
-
:name
|
126
|
-
:
|
127
|
-
:type
|
298
|
+
:name => 'passenger_ruby',
|
299
|
+
:scope => :application,
|
300
|
+
:type => :string,
|
301
|
+
:default => DEFAULT_RUBY
|
128
302
|
},
|
129
303
|
{
|
130
|
-
:name
|
131
|
-
:
|
304
|
+
:name => 'passenger_python',
|
305
|
+
:scope => :application,
|
306
|
+
:type => :string,
|
307
|
+
:default => DEFAULT_PYTHON
|
132
308
|
},
|
133
309
|
{
|
134
|
-
:name
|
135
|
-
:
|
310
|
+
:name => 'passenger_nodejs',
|
311
|
+
:scope => :application,
|
312
|
+
:type => :string,
|
313
|
+
:default => DEFAULT_NODEJS
|
136
314
|
},
|
137
315
|
{
|
138
|
-
:name
|
139
|
-
:
|
316
|
+
:name => 'passenger_meteor_app_settings',
|
317
|
+
:scope => :application,
|
318
|
+
:type => :string
|
140
319
|
},
|
141
320
|
{
|
142
|
-
:name
|
143
|
-
:
|
144
|
-
:
|
321
|
+
:name => 'passenger_app_env',
|
322
|
+
:scope => :application,
|
323
|
+
:type => :string,
|
324
|
+
:default => 'production',
|
325
|
+
:field => 'environment'
|
145
326
|
},
|
146
327
|
{
|
147
|
-
:name
|
148
|
-
:
|
328
|
+
:name => 'passenger_friendly_error_pages',
|
329
|
+
:scope => :application,
|
330
|
+
:type => :flag,
|
331
|
+
:dynamic_default => 'On if passenger_app_env is development, off otherwise'
|
149
332
|
},
|
150
333
|
{
|
151
|
-
:name
|
152
|
-
:
|
153
|
-
:
|
334
|
+
:name => 'passenger_min_instances',
|
335
|
+
:scope => :application,
|
336
|
+
:type => :uinteger,
|
337
|
+
:default => 1,
|
338
|
+
:header => 'PASSENGER_MIN_PROCESSES'
|
154
339
|
},
|
155
340
|
{
|
156
341
|
:name => 'passenger_max_instances_per_app',
|
342
|
+
:scope => :global,
|
157
343
|
:context => [:main],
|
158
|
-
:type => :
|
344
|
+
:type => :uinteger,
|
345
|
+
:default => 0,
|
159
346
|
:header => 'PASSENGER_MAX_PROCESSES'
|
160
347
|
},
|
161
348
|
{
|
162
|
-
:name
|
163
|
-
:
|
164
|
-
|
165
|
-
|
166
|
-
:name => 'passenger_start_timeout',
|
167
|
-
:type => :integer
|
168
|
-
},
|
169
|
-
{
|
170
|
-
:name => 'passenger_base_uri',
|
171
|
-
:type => :string_array,
|
172
|
-
:field => 'base_uris',
|
173
|
-
:header => nil
|
349
|
+
:name => 'passenger_max_requests',
|
350
|
+
:scope => :location,
|
351
|
+
:type => :uinteger,
|
352
|
+
:default => 0
|
174
353
|
},
|
175
354
|
{
|
176
|
-
:name
|
177
|
-
:
|
178
|
-
:
|
355
|
+
:name => 'passenger_start_timeout',
|
356
|
+
:scope => :application,
|
357
|
+
:type => :integer,
|
358
|
+
:default => DEFAULT_START_TIMEOUT / 1000
|
179
359
|
},
|
180
360
|
{
|
181
|
-
:name
|
182
|
-
:
|
361
|
+
:name => 'passenger_base_uri',
|
362
|
+
:scope => :location,
|
363
|
+
:type => :string_array,
|
364
|
+
:field => 'base_uris',
|
365
|
+
:header => nil
|
183
366
|
},
|
184
367
|
{
|
185
|
-
:name
|
186
|
-
:
|
368
|
+
:name => 'passenger_document_root',
|
369
|
+
:scope => :location,
|
370
|
+
:type => :string,
|
371
|
+
:header => nil
|
187
372
|
},
|
188
373
|
{
|
189
|
-
:name
|
190
|
-
:
|
374
|
+
:name => 'passenger_user',
|
375
|
+
:scope => :application,
|
376
|
+
:type => :string,
|
377
|
+
:dynamic_default => 'See the user account sandboxing rules'
|
191
378
|
},
|
192
379
|
{
|
193
|
-
:name
|
194
|
-
:
|
380
|
+
:name => 'passenger_group',
|
381
|
+
:scope => :application,
|
382
|
+
:type => :string,
|
383
|
+
:dynamic_default => 'See the user account sandboxing rules'
|
195
384
|
},
|
196
385
|
{
|
197
|
-
:name
|
198
|
-
:
|
386
|
+
:name => 'passenger_app_group_name',
|
387
|
+
:scope => :application,
|
388
|
+
:type => :string,
|
389
|
+
:dynamic_default => 'passenger_app_root plus passenger_app_env'
|
199
390
|
},
|
200
391
|
{
|
201
|
-
:name
|
202
|
-
:
|
392
|
+
:name => 'passenger_app_root',
|
393
|
+
:scope => :application,
|
394
|
+
:type => :string,
|
395
|
+
:dynamic_default => "Parent directory of the associated Nginx virtual host's root directory"
|
203
396
|
},
|
204
397
|
{
|
205
|
-
:name => '
|
206
|
-
:
|
207
|
-
:type => :
|
208
|
-
:function => 'union_station_filter',
|
209
|
-
:field => 'union_station_filters',
|
210
|
-
:header => nil
|
398
|
+
:name => 'passenger_app_rights',
|
399
|
+
:scope => :application,
|
400
|
+
:type => :string
|
211
401
|
},
|
212
402
|
{
|
213
|
-
:name
|
214
|
-
:
|
403
|
+
:name => 'passenger_debugger',
|
404
|
+
:scope => :application,
|
405
|
+
:type => :flag,
|
406
|
+
:default => false
|
215
407
|
},
|
216
408
|
{
|
217
|
-
:name
|
218
|
-
:
|
409
|
+
:name => 'passenger_max_preloader_idle_time',
|
410
|
+
:scope => :application,
|
411
|
+
:type => :integer,
|
412
|
+
:default => DEFAULT_MAX_PRELOADER_IDLE_TIME
|
219
413
|
},
|
220
414
|
{
|
221
415
|
:name => 'passenger_ignore_headers',
|
416
|
+
:scope => :location,
|
222
417
|
:take => 'NGX_CONF_1MORE',
|
223
418
|
:function => 'ngx_conf_set_bitmask_slot',
|
224
419
|
:field => 'upstream_config.ignore_headers',
|
225
|
-
:post => '&ngx_http_upstream_ignore_headers_masks'
|
420
|
+
:post => '&ngx_http_upstream_ignore_headers_masks',
|
421
|
+
:auto_generate_nginx_tracking_code => false
|
226
422
|
},
|
227
423
|
{
|
228
|
-
:name
|
229
|
-
:
|
230
|
-
:
|
231
|
-
:
|
424
|
+
:name => 'passenger_env_var',
|
425
|
+
:scope => :application,
|
426
|
+
:type => :string_keyval,
|
427
|
+
:field => 'env_vars',
|
428
|
+
:header => nil
|
232
429
|
},
|
233
430
|
{
|
234
|
-
:name
|
235
|
-
:
|
236
|
-
:
|
237
|
-
:
|
431
|
+
:name => 'passenger_set_header',
|
432
|
+
:scope => :location,
|
433
|
+
:type => :string_keyval,
|
434
|
+
:field => 'headers_source',
|
435
|
+
:header => nil,
|
238
436
|
:auto_generate_nginx_create_code => false,
|
239
437
|
:auto_generate_nginx_merge_code => false
|
240
438
|
},
|
241
439
|
{
|
242
|
-
:name
|
243
|
-
:
|
244
|
-
:
|
440
|
+
:name => 'passenger_pass_header',
|
441
|
+
:scope => :location,
|
442
|
+
:type => :string_array,
|
443
|
+
:field => 'upstream_config.pass_headers'
|
444
|
+
},
|
445
|
+
{
|
446
|
+
:name => 'passenger_headers_hash_max_size',
|
447
|
+
:scope => :location,
|
448
|
+
:type => :uinteger,
|
449
|
+
:header => nil,
|
450
|
+
:default => 512
|
245
451
|
},
|
246
452
|
{
|
247
|
-
:name
|
248
|
-
:
|
249
|
-
:
|
250
|
-
:
|
453
|
+
:name => 'passenger_headers_hash_bucket_size',
|
454
|
+
:scope => :location,
|
455
|
+
:type => :uinteger,
|
456
|
+
:header => nil,
|
457
|
+
:default => 64
|
251
458
|
},
|
252
459
|
{
|
253
|
-
:name
|
254
|
-
:
|
255
|
-
:
|
256
|
-
:default
|
460
|
+
:name => 'passenger_ignore_client_abort',
|
461
|
+
:scope => :location,
|
462
|
+
:type => :flag,
|
463
|
+
:default => false,
|
464
|
+
:field => 'upstream_config.ignore_client_abort'
|
257
465
|
},
|
258
466
|
{
|
259
|
-
:name
|
260
|
-
:
|
261
|
-
:
|
467
|
+
:name => 'passenger_read_timeout',
|
468
|
+
:scope => :location,
|
469
|
+
:type => :msec,
|
470
|
+
:field => 'upstream_config.read_timeout'
|
262
471
|
},
|
263
472
|
{
|
264
|
-
:name
|
265
|
-
:
|
266
|
-
:
|
473
|
+
:name => 'passenger_buffer_response',
|
474
|
+
:scope => :location,
|
475
|
+
:type => :flag,
|
476
|
+
:default => false,
|
477
|
+
:field => 'upstream_config.buffering'
|
267
478
|
},
|
268
479
|
{
|
269
480
|
:name => 'passenger_buffer_size',
|
481
|
+
:scope => :location,
|
482
|
+
:dynamic_default => '4k|8k',
|
270
483
|
:take => 'NGX_CONF_TAKE1',
|
271
484
|
:function => 'ngx_conf_set_size_slot',
|
272
|
-
:field => 'upstream_config.buffer_size'
|
485
|
+
:field => 'upstream_config.buffer_size',
|
486
|
+
:auto_generate_nginx_tracking_code => false
|
273
487
|
},
|
274
488
|
{
|
275
489
|
:name => 'passenger_buffers',
|
490
|
+
:scope => :location,
|
491
|
+
:dynamic_default => '8 4k|8k',
|
276
492
|
:take => 'NGX_CONF_TAKE2',
|
277
493
|
:function => 'ngx_conf_set_bufs_slot',
|
278
|
-
:field => 'upstream_config.bufs'
|
494
|
+
:field => 'upstream_config.bufs',
|
495
|
+
:auto_generate_nginx_tracking_code => false
|
279
496
|
},
|
280
497
|
{
|
281
498
|
:name => 'passenger_busy_buffers_size',
|
499
|
+
:scope => :location,
|
500
|
+
:dynamic_default => '8k|16k',
|
282
501
|
:take => 'NGX_CONF_TAKE1',
|
283
502
|
:function => 'ngx_conf_set_size_slot',
|
284
|
-
:field => 'upstream_config.busy_buffers_size_conf'
|
503
|
+
:field => 'upstream_config.busy_buffers_size_conf',
|
504
|
+
:auto_generate_nginx_tracking_code => false
|
285
505
|
},
|
286
506
|
{
|
287
507
|
:name => 'passenger_intercept_errors',
|
508
|
+
:scope => :location,
|
288
509
|
:type => :flag,
|
510
|
+
:default => false,
|
289
511
|
:field => 'upstream_config.intercept_errors'
|
290
512
|
},
|
291
513
|
{
|
292
|
-
:name
|
293
|
-
:
|
294
|
-
|
295
|
-
|
296
|
-
:name => 'passenger_load_shell_envvars',
|
297
|
-
:type => :flag
|
514
|
+
:name => 'passenger_spawn_method',
|
515
|
+
:scope => :application,
|
516
|
+
:dynamic_default => "'smart' for Ruby apps, 'direct' for all other apps",
|
517
|
+
:type => :string
|
298
518
|
},
|
299
519
|
{
|
300
|
-
:name
|
301
|
-
:
|
520
|
+
:name => 'passenger_load_shell_envvars',
|
521
|
+
:scope => :application,
|
522
|
+
:type => :flag,
|
523
|
+
:default => true
|
302
524
|
},
|
303
525
|
{
|
304
|
-
:name
|
305
|
-
:
|
526
|
+
:name => 'passenger_max_request_queue_size',
|
527
|
+
:scope => :application,
|
528
|
+
:type => :uinteger,
|
529
|
+
:default => DEFAULT_MAX_REQUEST_QUEUE_SIZE
|
306
530
|
},
|
307
531
|
{
|
308
|
-
:name
|
309
|
-
:
|
532
|
+
:name => 'passenger_request_queue_overflow_status_code',
|
533
|
+
:scope => :location,
|
534
|
+
:type => :integer,
|
535
|
+
:default => 503
|
310
536
|
},
|
311
537
|
{
|
312
|
-
:name
|
313
|
-
:
|
538
|
+
:name => 'passenger_restart_dir',
|
539
|
+
:scope => :application,
|
540
|
+
:type => :string,
|
541
|
+
:default => 'tmp'
|
314
542
|
},
|
315
543
|
{
|
316
|
-
:name
|
317
|
-
:
|
318
|
-
:
|
544
|
+
:name => 'passenger_app_type',
|
545
|
+
:scope => :application,
|
546
|
+
:type => :string,
|
547
|
+
:dynamic_default => 'Autodetected',
|
548
|
+
:header => nil
|
319
549
|
},
|
320
550
|
{
|
321
|
-
:name
|
322
|
-
:
|
551
|
+
:name => 'passenger_startup_file',
|
552
|
+
:scope => :application,
|
553
|
+
:type => :string,
|
554
|
+
:dynamic_default => 'Autodetected'
|
323
555
|
},
|
324
556
|
{
|
325
|
-
:name
|
326
|
-
:
|
557
|
+
:name => 'passenger_sticky_sessions',
|
558
|
+
:scope => :location,
|
559
|
+
:type => :flag,
|
560
|
+
:default => false
|
327
561
|
},
|
328
562
|
{
|
329
|
-
:name
|
330
|
-
:
|
563
|
+
:name => 'passenger_sticky_sessions_cookie_name',
|
564
|
+
:scope => :location,
|
565
|
+
:type => :string,
|
566
|
+
:default => DEFAULT_STICKY_SESSIONS_COOKIE_NAME
|
331
567
|
},
|
332
568
|
{
|
333
|
-
:name
|
334
|
-
:
|
569
|
+
:name => 'passenger_vary_turbocache_by_cookie',
|
570
|
+
:scope => :location,
|
571
|
+
:type => :string
|
335
572
|
},
|
336
573
|
{
|
337
|
-
:name
|
338
|
-
:
|
574
|
+
:name => 'passenger_abort_websockets_on_process_shutdown',
|
575
|
+
:scope => :application,
|
576
|
+
:type => :flag,
|
577
|
+
:default => true
|
339
578
|
},
|
340
579
|
{
|
341
|
-
:name
|
342
|
-
:
|
580
|
+
:name => 'passenger_force_max_concurrent_requests_per_process',
|
581
|
+
:scope => :application,
|
582
|
+
:type => :integer,
|
583
|
+
:default => -1
|
343
584
|
},
|
344
585
|
|
345
|
-
###### Enterprise features ######
|
586
|
+
###### Enterprise features (placeholders in OSS) ######
|
346
587
|
{
|
347
588
|
:context => [:main],
|
348
589
|
:name => 'passenger_fly_with',
|
590
|
+
:scope => :global,
|
349
591
|
:type => :string,
|
350
592
|
:struct => "NGX_HTTP_MAIN_CONF_OFFSET",
|
351
593
|
:function => 'passenger_enterprise_only',
|
@@ -353,48 +595,66 @@ LOCATION_CONFIGURATION_OPTIONS = [
|
|
353
595
|
},
|
354
596
|
{
|
355
597
|
:name => 'passenger_max_instances',
|
356
|
-
:
|
357
|
-
:function => 'passenger_enterprise_only',
|
358
|
-
:field => nil
|
359
|
-
},
|
360
|
-
{
|
361
|
-
:name => 'passenger_max_request_time',
|
598
|
+
:scope => :application,
|
362
599
|
:type => :integer,
|
363
600
|
:function => 'passenger_enterprise_only',
|
364
601
|
:field => nil
|
365
602
|
},
|
366
603
|
{
|
367
604
|
:name => 'passenger_memory_limit',
|
605
|
+
:scope => :application,
|
368
606
|
:type => :integer,
|
369
607
|
:function => 'passenger_enterprise_only',
|
370
608
|
:field => nil
|
371
609
|
},
|
372
610
|
{
|
373
611
|
:name => 'passenger_concurrency_model',
|
612
|
+
:scope => :application,
|
374
613
|
:type => :string,
|
375
614
|
:function => 'passenger_enterprise_only',
|
376
615
|
:field => nil
|
377
616
|
},
|
378
617
|
{
|
379
618
|
:name => 'passenger_thread_count',
|
619
|
+
:scope => :application,
|
380
620
|
:type => :integer,
|
381
621
|
:function => 'passenger_enterprise_only',
|
382
622
|
:field => nil
|
383
623
|
},
|
384
624
|
{
|
385
625
|
:name => 'passenger_rolling_restarts',
|
626
|
+
:scope => :application,
|
386
627
|
:type => :flag,
|
387
628
|
:function => 'passenger_enterprise_only',
|
388
629
|
:field => nil
|
389
630
|
},
|
390
631
|
{
|
391
632
|
:name => 'passenger_resist_deployment_errors',
|
633
|
+
:scope => :application,
|
392
634
|
:type => :flag,
|
393
635
|
:function => 'passenger_enterprise_only',
|
394
636
|
:field => nil
|
395
637
|
},
|
638
|
+
{
|
639
|
+
:name => 'passenger_max_request_time',
|
640
|
+
:scope => :location,
|
641
|
+
:type => :integer,
|
642
|
+
:function => 'passenger_enterprise_only',
|
643
|
+
:field => nil
|
644
|
+
},
|
645
|
+
{
|
646
|
+
:name => 'passenger_max_request_queue_time',
|
647
|
+
:scope => :location,
|
648
|
+
:type => :integer,
|
649
|
+
:function => 'passenger_enterprise_only',
|
650
|
+
:field => nil
|
651
|
+
},
|
396
652
|
|
397
653
|
###### Aliases for backwards compatibility ######
|
654
|
+
{
|
655
|
+
:name => 'passenger_debug_log_file',
|
656
|
+
:alias_for => 'passenger_log_file'
|
657
|
+
},
|
398
658
|
{
|
399
659
|
:name => 'rails_spawn_method',
|
400
660
|
:alias_for => 'passenger_spawn_method'
|
@@ -415,14 +675,86 @@ LOCATION_CONFIGURATION_OPTIONS = [
|
|
415
675
|
###### Obsolete options ######
|
416
676
|
{
|
417
677
|
:name => 'rails_framework_spawner_idle_time',
|
678
|
+
:scope => :application,
|
418
679
|
:take => 'NGX_CONF_TAKE1',
|
419
680
|
:function => 'rails_framework_spawner_idle_time',
|
420
681
|
:field => nil
|
421
682
|
},
|
422
683
|
{
|
423
684
|
:name => 'passenger_use_global_queue',
|
685
|
+
:scope => :global,
|
424
686
|
:take => 'NGX_CONF_FLAG',
|
425
687
|
:function => 'passenger_use_global_queue',
|
426
688
|
:field => nil
|
427
|
-
}
|
689
|
+
},
|
690
|
+
{
|
691
|
+
:name => 'passenger_analytics_log_user',
|
692
|
+
:scope => :global,
|
693
|
+
:context => [:main],
|
694
|
+
:type => :string,
|
695
|
+
:function => 'passenger_obsolete_directive',
|
696
|
+
:field => nil
|
697
|
+
},
|
698
|
+
{
|
699
|
+
:name => 'passenger_analytics_log_group',
|
700
|
+
:scope => :global,
|
701
|
+
:context => [:main],
|
702
|
+
:type => :string,
|
703
|
+
:function => 'passenger_obsolete_directive',
|
704
|
+
:field => nil
|
705
|
+
},
|
706
|
+
{
|
707
|
+
:name => 'union_station_gateway_address',
|
708
|
+
:scope => :global,
|
709
|
+
:context => [:main],
|
710
|
+
:type => :string,
|
711
|
+
:function => 'passenger_obsolete_directive',
|
712
|
+
:field => nil
|
713
|
+
},
|
714
|
+
{
|
715
|
+
:name => 'union_station_gateway_port',
|
716
|
+
:scope => :global,
|
717
|
+
:context => [:main],
|
718
|
+
:type => :integer,
|
719
|
+
:function => 'passenger_obsolete_directive',
|
720
|
+
:field => nil
|
721
|
+
},
|
722
|
+
{
|
723
|
+
:name => 'union_station_gateway_cert',
|
724
|
+
:scope => :global,
|
725
|
+
:context => [:main],
|
726
|
+
:type => :string,
|
727
|
+
:function => 'passenger_obsolete_directive',
|
728
|
+
:field => nil
|
729
|
+
},
|
730
|
+
{
|
731
|
+
:name => 'union_station_proxy_address',
|
732
|
+
:scope => :global,
|
733
|
+
:context => [:main],
|
734
|
+
:type => :string,
|
735
|
+
:function => 'passenger_obsolete_directive',
|
736
|
+
:field => nil
|
737
|
+
},
|
738
|
+
{
|
739
|
+
:name => 'union_station_key',
|
740
|
+
:scope => :application,
|
741
|
+
:type => :string,
|
742
|
+
:function => 'passenger_obsolete_directive',
|
743
|
+
:field => nil
|
744
|
+
},
|
745
|
+
{
|
746
|
+
:name => 'union_station_support',
|
747
|
+
:scope => :application,
|
748
|
+
:type => :flag,
|
749
|
+
:function => 'passenger_obsolete_directive',
|
750
|
+
:field => nil
|
751
|
+
},
|
752
|
+
{
|
753
|
+
:name => 'union_station_filter',
|
754
|
+
:scope => :application,
|
755
|
+
:take => 'NGX_CONF_TAKE1',
|
756
|
+
:type => :string_array,
|
757
|
+
:function => 'passenger_obsolete_directive',
|
758
|
+
:field => nil
|
759
|
+
},
|
428
760
|
]
|