uWSGI 2.0.25.1__tar.gz → 2.0.27__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/.github/workflows/test.yml +35 -15
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/Makefile +8 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/PKG-INFO +1 -1
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/apache2/mod_proxy_uwsgi.c +6 -0
- uwsgi-2.0.27/buildconf/integration-tests.ini +4 -0
- uwsgi-2.0.27/buildconf/unittest.ini +6 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/init.c +1 -1
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/loop.c +1 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/master_utils.c +6 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/regexp.c +2 -2
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/uwsgi.c +24 -15
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/php/common.h +2 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/php/php_plugin.c +16 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pypy/pypy_setup.py +88 -48
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/python_plugin.c +29 -15
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/pyutils.c +6 -6
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/uwsgi_python.h +15 -7
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pyuwsgi/pyuwsgi.c +2 -7
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/setup.py +1 -0
- uwsgi-2.0.27/t/php/config.ini +13 -0
- uwsgi-2.0.27/t/pypy/config.ini +7 -0
- uwsgi-2.0.27/t/python/helloapp.py +3 -0
- uwsgi-2.0.27/t/runner +144 -0
- uwsgi-2.0.27/t/static/config.ini +4 -0
- uwsgi-2.0.27/unittest/Makefile +28 -0
- uwsgi-2.0.27/unittest/check_core.c +108 -0
- uwsgi-2.0.27/unittest/check_regexp.c +86 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/uwsgi.gemspec +1 -1
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/uwsgi.h +4 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/uwsgiconfig.py +3 -3
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/.github/workflows/compile-test.yml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/.gitignore +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/CONTRIBUTORS +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/INSTALL +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/LICENSE +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/README +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/apache2/mod_Ruwsgi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/apache2/mod_uwsgi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/attach.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/bin/uwsgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/all.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/asyncio.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/base.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/cgi.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/core.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/coroae.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/coverity.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/default.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/django.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/embedded.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/erlang.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/gccgo.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/gevent.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/glusterfs.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/gridfs.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/jwsgi.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/lib.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/lua.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/luap.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/minimal.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/modular.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/mono.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/nolang.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/package.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/php.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/plonly.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/ppa.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/psgi.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/pyerl.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/pylua.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/pyonly.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/pypy.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/pypyonly.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/pyring.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/pyuwsgi.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/pyuwsginossl.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/rack.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/rados.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/rbonly.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/ring.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/ruby2.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/servlet.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/travis.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/unbit.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/unbitstaff.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/uwsgi.it.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/buildconf/v8.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/Uwsgi.pm +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/binder.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/centos_init_script +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/cgi_python.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/cryptologger.rb +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/emperormon.ru +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/fdconf.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/graphite_uwsgi.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/launchd/it.unbit.uwsgi.emperor.plist +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/launchd/it.unbit.uwsgi.plist +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/loadapp.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/pypy/uwsgi_pypy_greenlets.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/pyuwsgi.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/runuwsgi.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/securesubscribe.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/spoolqueue/producer.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/spoolqueue/tasks.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/spoolqueue/tasksconsumer.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/subscribe.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/twuwsgi.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/upstart/emperor.conf +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/upstart/uwsgi.conf +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/upython +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/urack.rb +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/uwsgi-cache-monitor.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/uwsgi.erl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/uwsgi.java +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/uwsgi.rb +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/uwsgi_client.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/uwsgi_dynamic_client.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/uwsgisubscribers.ru +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/contrib/xinetd_uwsgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/alarm.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/async.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/buffer.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/cache.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/chunked.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/clang_fake.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/clock.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/config.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/cookie.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/cron.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/daemons.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/emperor.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/errors.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/event.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/exceptions.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/fifo.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/fsmon.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/gateway.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/hash.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/hooks.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/ini.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/io.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/json.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/legion.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/lock.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/logging. +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/logging.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/master.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/master_checks.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/master_events.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/metrics.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/mount.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/mule.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/notify.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/offload.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/plugins.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/plugins_builder.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/progress.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/protocol.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/querystring.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/queue.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/rb_timers.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/reader.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/routing.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/rpc.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/sendfile.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/setup_utils.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/sharedarea.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/signal.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/skel.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/snmp.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/socket.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/spooler.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/ssl.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/static.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/stats.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/storage.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/strings.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/subscription.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/timebomb.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/transformations.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/utils.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/websockets.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/writer.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/xmlconf.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/yaml.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/zeus.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/core/zlib.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/bootstrap.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/bootstrap2.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/bootstrap3.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/bootstrap4.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/bootstrap5.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/config.lua +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/config.ru +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/config17.ru +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/config2.lua +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/config2.ru +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/config30.ru +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/corostream.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/debug.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/fibers.ru +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/fibers.yml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/flaskpost.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/heavytest.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/heavytest.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/info_uwsgi.php +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/logic.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/mega.xml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/mjpeg_stream.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/mojoapp.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/multi.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/multi.xml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/multiapp.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/protected.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/router.lua +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/simple_app.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/simple_app_wsgi2.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/simple_logger.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/sites.xml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/sputnik.ws +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/staticfilesnmp.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/taskqueue.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/uwsgi.xml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/uwsgirouter.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/uwsgirouter2.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/uwsgirouter3.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/uwsgirouter4.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/uwsgirouter5.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/uwsgistatus.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/welcome.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/welcome.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/welcome3.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/werkzeug.js +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/werkzeug.yml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/werkzeug_strict.yml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/xmlindex-html.xsl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/xmlindex.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/examples/zmqgevent.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/ext/uwsgi/extconf.rb +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/install.sh +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/lib/linux_ns.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/lib/netlink.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/lib/sun_fixes.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/logo_uWSGI.png +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/logo_uWSGI.svg +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/mongrel2-uwsgi.conf +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/airbrake/airbrake_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/airbrake/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/alarm_curl/alarm_curl_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/alarm_curl/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/alarm_speech/alarm_speech.m +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/alarm_speech/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/alarm_xmpp/alarm_xmpp_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/alarm_xmpp/gloox.cc +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/alarm_xmpp/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/asyncio/asyncio.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/asyncio/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cache/cache.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cache/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/carbon/carbon.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/carbon/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cgi/cgi_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cgi/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cheaper_backlog2/cheaper_backlog2.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cheaper_backlog2/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cheaper_busyness/cheaper_busyness.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cheaper_busyness/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/clock_monotonic/clock_monotonic.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/clock_monotonic/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/clock_realtime/clock_realtime.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/clock_realtime/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/corerouter/corerouter.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/corerouter/cr.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/corerouter/cr_common.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/corerouter/cr_map.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/corerouter/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/coroae/coroae.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/coroae/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cplusplus/base.cc +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cplusplus/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/cplusplus/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/curl_cron/curl_cron.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/curl_cron/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/dumbloop/dumb.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/dumbloop/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/dummy/dummy.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/dummy/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/echo/echo_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/echo/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_amqp/amqp.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_amqp/emperor_amqp.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_amqp/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_mongodb/emperor_mongodb.cc +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_mongodb/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_mongodb/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_pg/emperor_pg.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_pg/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_zeromq/emperor_zeromq.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/emperor_zeromq/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/example/example_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/example/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/exception_log/exception_log.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/exception_log/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/fastrouter/fastrouter.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/fastrouter/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/fiber/fiber.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/fiber/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/forkptyrouter/forkptyrouter.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/forkptyrouter/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gccgo/gccgo_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gccgo/uwsgi.go +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gccgo/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/geoip/geoip.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/geoip/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gevent/gevent.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gevent/gevent.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gevent/hooks.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gevent/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/glusterfs/glusterfs.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/glusterfs/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/graylog2/graylog2_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/graylog2/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/greenlet/greenlet.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/greenlet/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gridfs/gridfs.cc +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gridfs/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/gridfs/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/http/common.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/http/http.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/http/https.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/http/keepalive.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/http/spdy3.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/http/spdy3.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/http/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/jvm/jvm.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/jvm/jvm_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/jvm/uwsgi.java +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/jvm/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/jwsgi/jwsgi_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/jwsgi/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ldap/ldap.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ldap/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/legion_cache_fetch/legion_cache_fetch.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/legion_cache_fetch/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/libffi/libffi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/libffi/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/libtcc/libtcc.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/libtcc/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logcrypto/logcrypto.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logcrypto/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logfile/logfile.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logfile/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logpipe/logpipe.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logpipe/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logsocket/logsocket_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logsocket/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logzmq/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/logzmq/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/lua/lua_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/lua/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/matheval/math.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/matheval/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mongodb/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mongodb/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mongodblog/mongodblog_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mongodblog/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mongrel2/mongrel2.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mongrel2/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mono/mono_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mono/uwsgi.cs +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/mono/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/msgpack/msgpack.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/msgpack/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/nagios/nagios.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/nagios/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/notfound/notfound.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/notfound/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/objc_gc/objc_gc.m +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/objc_gc/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pam/pam.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pam/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/php/session.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/php/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ping/ping_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ping/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/psgi/psgi.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/psgi/psgi_loader.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/psgi/psgi_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/psgi/psgi_response.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/psgi/uwsgi_plmodule.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/psgi/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pty/pty.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pty/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pypy/README +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pypy/pypy_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pypy/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/gil.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/profiler.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/pump_subhandler.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/pyloader.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/raw.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/symimporter.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/tracebacker.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/uwsgi_pymodule.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/web3_subhandler.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/wsgi_handlers.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/wsgi_headers.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/python/wsgi_subhandler.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/pyuwsgi/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rack/rack_api.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rack/rack_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rack/uwsgi_rack.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rack/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rados/rados.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rados/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rawrouter/rawrouter.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rawrouter/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rbthreads/rbthreads.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rbthreads/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/redislog/redislog_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/redislog/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ring/ring_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ring/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_access/router_access.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_access/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_basicauth/router_basicauth.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_basicauth/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_cache/router_cache.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_cache/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_expires/expires.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_expires/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_hash/router_hash.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_hash/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_http/router_http.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_http/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_memcached/router_memcached.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_memcached/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_metrics/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_metrics/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_radius/radius.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_radius/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_redirect/router_redirect.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_redirect/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_redis/router_redis.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_redis/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_rewrite/router_rewrite.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_rewrite/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_spnego/router_spnego.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_spnego/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_static/router_static.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_static/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_uwsgi/router_uwsgi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_uwsgi/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_xmldir/router_xmldir.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/router_xmldir/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rpc/rpc_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rpc/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rrdtool/rrdtool.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rrdtool/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rsyslog/rsyslog_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/rsyslog/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ruby19/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/servlet/servlet_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/servlet/uwsgi_servlet.java +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/servlet/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/signal/signal_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/signal/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/spooler/spooler_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/spooler/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/sqlite3/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/sqlite3/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ssi/ssi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ssi/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/sslrouter/sslrouter.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/sslrouter/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stackless/stackless.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stackless/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_file/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_file/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_mongodb/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_mongodb/stats_pusher_mongodb.cc +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_mongodb/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_socket/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_socket/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_statsd/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/stats_pusher_statsd/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/symcall/symcall_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/symcall/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/syslog/syslog_plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/syslog/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/systemd_logger/systemd_logger.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/systemd_logger/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/tornado/tornado.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/tornado/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_chunked/chunked.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_chunked/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_gzip/gzip.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_gzip/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_offload/offload.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_offload/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_template/tt.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_template/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_tofile/tofile.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_tofile/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_toupper/toupper.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/transformation_toupper/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/tuntap/common.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/tuntap/common.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/tuntap/firewall.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/tuntap/tuntap.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/tuntap/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ugreen/ugreen.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/ugreen/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/v8/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/v8/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/v8/v8_commonjs.cc +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/v8/v8_jsgi.cc +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/v8/v8_uwsgi.cc +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/v8/v8_uwsgi.h +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/webdav/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/webdav/webdav.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/xattr/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/xattr/xattr.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/xslt/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/xslt/xslt.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/zabbix/plugin.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/zabbix/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/zergpool/uwsgiplugin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/plugins/zergpool/zergpool.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/proto/BUILD +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/proto/base.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/proto/fastcgi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/proto/http.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/proto/puwsgi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/proto/scgi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/proto/uwsgi.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/setup.cpyext.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/setup.pyuwsgi.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/cachebitmap.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/cachebitmap.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/cachetest.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/clojure/myapp.clj +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/core/apps/read_body_and_send.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/core/read_body_and_send.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/core/url_sanitize.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/go/cachetest.go +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/go/complextest.go +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/go/uploadtest.go +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/java/rpc.java +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/lua/basic.lua +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/mono/cache.aspx +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/mules/mulebrain.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/mules/reload.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/mules/signal_management.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/active_workers_signal.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/apps/input_with_offset.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/test.psgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/test_benchmark.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/test_harakiri.psgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/test_hello.psgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/test_input_with_offset.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/test_post.psgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/test_sleepy.psgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/perl/test_streaming.psgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/pypy/t_continulet1.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/pypy/t_continulet2.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/python/forcecl.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/python/manage_script_name/manage_script_name_test.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/python/manage_script_name/test_manage_script_name.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/python/manage_script_name/useless_app.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/python/spooler_decorators/spooler_decorator_test.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/python/spooler_decorators/spooler_decorator_tests.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/python/spooler_decorators/spooler_handlers.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/python/testba.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/ring/README.md +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/ring/config.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/ring/project.clj +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/ring/src/uwsgi/ring/tests/app.clj +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/ring/src/uwsgi/ring/tests/basic.clj +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/ring/src/uwsgi/ring/tests/body.clj +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/ring/src/uwsgi/ring/tests/simple.clj +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/ring/src/uwsgi/ring/tests/upload.clj +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/routing/auth.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/routing/errorlimiter.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/routing/limiter.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/sharedarea/bigranges.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/sharedarea/bigranges.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/sharedarea/sharedarea_incdec.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/sharedarea/sharedarea_incdec.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/spooler/read.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/spooler/reload.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/spooler/spooldir/.gitignore +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/webdav/carddav.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/xslt/cd.xml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/xslt/cd.xml.xslt +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/t/xslt/routex.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/Responder.pm +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/__init__.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/badthread.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/badwrites.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/cpubound_async.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/cpubound_green.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/cpubound_stackless.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/main.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/master-nothreads.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/master-singleinterpreter-threads-10workers.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/master-singleinterpreter-threads-1worker.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/master-threads-10workers.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/master-threads-1worker.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/nomaster-threads-10workers.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/nomaster-threads-1worker.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/deadlocks/sitecustomize.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/decoratortest.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/fileserve_async.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/gevent_spool.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/gh-deadlocks.sh +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/gh-python.sh +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/gh-rack.sh +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/gh-shared.sh +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/grunter.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/harakiri.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/iobound_async.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/iobound_async_unix.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/iobound_green.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/logger.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/mako_ugreen.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/mulefunc.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/multiapp.txt +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/myadmin.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/pgbound_async.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/picazzo.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/psycogreen_green.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/psycopg2_green.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/pump.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/queue.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/refcount.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/rpc.lua +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/rpc.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/runningthread.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/sendchunked.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/sharedarea.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/sig.lua +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/signals.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/sigwait.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/sleeping_async.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/sleeping_green.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/sleepthreadasync.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/slow.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/spoolme.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/static/test.txt +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/static/test2.txt +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/staticfile.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/streamer.psgi +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/t/static.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/templates/queue.html +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/testapp.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/testfilewrapper.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/testgevent.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/testpy3.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/testrpc.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/testsignals.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/testworkers.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/testyieldnone.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/threads.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/threads_atexit.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/threads_heavy.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/travis.sh +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/ugevent.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/web3.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets_chat.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets_chat.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets_chat_async.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets_chat_asyncio.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets_echo.lua +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets_echo.pl +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets_echo.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/websockets_echo.ru +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/tests/werkzeug_app.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/uwsgi_main.c +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/uwsgidecorators.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/uwsgidsl.rb +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/valgrind/README +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/valgrind/valgrind-generate-sups.sh +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vassals/broodlord.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vassals/cc.ini +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vassals/multi.xml +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vhosttest/flask001/app1.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vhosttest/flask002/app2.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vhosttest/flask003/app3.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vhosttest/flask004/app4.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vhosttest/flask005/app5.py +0 -0
- {uwsgi-2.0.25.1 → uwsgi-2.0.27}/vhosttest/nginx.conf +0 -0
@@ -7,13 +7,42 @@ on:
|
|
7
7
|
branches: [ master, uwsgi-2.0 ]
|
8
8
|
|
9
9
|
jobs:
|
10
|
-
python:
|
11
10
|
|
11
|
+
unittest:
|
12
|
+
runs-on: ubuntu-20.04
|
13
|
+
steps:
|
14
|
+
- name: Install dependencies
|
15
|
+
run: |
|
16
|
+
sudo apt update -qq
|
17
|
+
sudo apt install --no-install-recommends -qqyf \
|
18
|
+
libpcre2-dev libjansson-dev libcap2-dev \
|
19
|
+
check
|
20
|
+
- uses: actions/checkout@v4
|
21
|
+
- name: Run unit tests
|
22
|
+
run: make unittests
|
23
|
+
|
24
|
+
test:
|
25
|
+
runs-on: ubuntu-22.04
|
26
|
+
steps:
|
27
|
+
- name: Install dependencies
|
28
|
+
run: |
|
29
|
+
sudo apt update -qq
|
30
|
+
sudo apt install --no-install-recommends -qqyf \
|
31
|
+
libpcre2-dev libjansson-dev libcap2-dev \
|
32
|
+
php-dev libphp-embed libargon2-dev libsodium-dev \
|
33
|
+
pypy3
|
34
|
+
- uses: actions/checkout@v4
|
35
|
+
- name: Set env
|
36
|
+
run: echo "PROFILE=integration-tests" >> $GITHUB_ENV
|
37
|
+
- name: Run integration tests
|
38
|
+
run: make all tests
|
39
|
+
|
40
|
+
python:
|
12
41
|
runs-on: ubuntu-20.04
|
13
42
|
strategy:
|
14
43
|
matrix:
|
15
|
-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
|
16
|
-
test-suite: [
|
44
|
+
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
|
45
|
+
test-suite: [python, deadlocks]
|
17
46
|
steps:
|
18
47
|
- name: Add deadnakes ppa
|
19
48
|
run: sudo add-apt-repository ppa:deadsnakes/ppa -y
|
@@ -22,34 +51,27 @@ jobs:
|
|
22
51
|
sudo apt update -qq
|
23
52
|
sudo apt install --no-install-recommends -qqyf python${{ matrix.python-version }}-dev \
|
24
53
|
libpcre2-dev libjansson-dev libcap2-dev \
|
25
|
-
curl
|
54
|
+
curl
|
26
55
|
- name: Install distutils
|
27
56
|
if: contains(fromJson('["3.6","3.7","3.8","3.9","3.10","3.11","3.12"]'), matrix.python-version)
|
28
57
|
run: |
|
29
58
|
sudo apt install --no-install-recommends -qqyf python${{ matrix.python-version }}-distutils \
|
30
59
|
- uses: actions/checkout@v4
|
31
|
-
- name: Run unit tests
|
32
|
-
if: matrix.test-suite == 'unittest'
|
33
|
-
run: make tests
|
34
60
|
- name: Build uWSGI binary
|
35
|
-
if: matrix.test-suite != 'unittest'
|
36
61
|
run: make
|
37
62
|
- name: Build python${{ matrix.python-version }} plugin
|
38
|
-
if: matrix.test-suite != 'unittest'
|
39
63
|
run: |
|
40
64
|
PYTHON_VERSION=${{ matrix.python-version }}
|
41
65
|
PYTHON_VERSION=python${PYTHON_VERSION//.}
|
42
66
|
/usr/bin/python${{ matrix.python-version }} -V
|
43
67
|
/usr/bin/python${{ matrix.python-version }} uwsgiconfig.py --plugin plugins/python base $PYTHON_VERSION
|
44
68
|
- name: run smoke tests
|
45
|
-
if: matrix.test-suite != 'unittest'
|
46
69
|
run: |
|
47
70
|
PYTHON_VERSION=${{ matrix.python-version }}
|
48
71
|
PYTHON_VERSION=python${PYTHON_VERSION//.}
|
49
72
|
./tests/gh-${{ matrix.test-suite }}.sh ${PYTHON_VERSION}
|
50
73
|
|
51
74
|
rack:
|
52
|
-
|
53
75
|
runs-on: ubuntu-20.04
|
54
76
|
strategy:
|
55
77
|
matrix:
|
@@ -59,11 +81,9 @@ jobs:
|
|
59
81
|
run: |
|
60
82
|
sudo apt update -qq
|
61
83
|
sudo apt install --no-install-recommends -qqyf python3-dev \
|
62
|
-
|
63
|
-
curl
|
84
|
+
libpcre2-dev libjansson-dev libcap2-dev ruby2.7-dev \
|
85
|
+
curl
|
64
86
|
- uses: actions/checkout@v4
|
65
|
-
- name: Run unit tests
|
66
|
-
run: make tests
|
67
87
|
- name: Build uWSGI binary
|
68
88
|
run: make
|
69
89
|
- name: Build rack plugin
|
@@ -5,6 +5,7 @@ all:
|
|
5
5
|
|
6
6
|
clean:
|
7
7
|
$(PYTHON) uwsgiconfig.py --clean
|
8
|
+
cd unittest && make clean
|
8
9
|
|
9
10
|
check:
|
10
11
|
$(PYTHON) uwsgiconfig.py --check
|
@@ -12,5 +13,12 @@ check:
|
|
12
13
|
plugin.%:
|
13
14
|
$(PYTHON) uwsgiconfig.py --plugin plugins/$* $(PROFILE)
|
14
15
|
|
16
|
+
unittests:
|
17
|
+
$(PYTHON) uwsgiconfig.py --build unittest
|
18
|
+
cd unittest && make test
|
19
|
+
|
20
|
+
tests:
|
21
|
+
$(PYTHON) t/runner
|
22
|
+
|
15
23
|
%:
|
16
24
|
$(PYTHON) uwsgiconfig.py --build $@
|
@@ -388,6 +388,12 @@ static int uwsgi_response(request_rec *r, proxy_conn_rec *backend, proxy_server_
|
|
388
388
|
return HTTP_BAD_GATEWAY;
|
389
389
|
}
|
390
390
|
|
391
|
+
/* T-E wins over C-L */
|
392
|
+
if (apr_table_get(r->headers_out, "Transfer-Encoding")) {
|
393
|
+
apr_table_unset(r->headers_out, "Content-Length");
|
394
|
+
backend->close = 1;
|
395
|
+
}
|
396
|
+
|
391
397
|
if ((buf = apr_table_get(r->headers_out, "Content-Type"))) {
|
392
398
|
ap_set_content_type(r, apr_pstrdup(r->pool, buf));
|
393
399
|
}
|
@@ -127,6 +127,7 @@ void *simple_loop_run(void *arg1) {
|
|
127
127
|
int main_queue = event_queue_init();
|
128
128
|
|
129
129
|
uwsgi_add_sockets_to_queue(main_queue, core_id);
|
130
|
+
event_queue_add_fd_read(main_queue, uwsgi.loop_stop_pipe[0]);
|
130
131
|
|
131
132
|
if (uwsgi.signal_socket > -1) {
|
132
133
|
event_queue_add_fd_read(main_queue, uwsgi.signal_socket);
|
@@ -54,6 +54,12 @@ void uwsgi_destroy_processes() {
|
|
54
54
|
|
55
55
|
uwsgi_detach_daemons();
|
56
56
|
|
57
|
+
for (i = 1; i <= uwsgi.numproc; i++) {
|
58
|
+
if (uwsgi.workers[i].pid > 0) {
|
59
|
+
waitpid(uwsgi.workers[i].pid, &waitpid_status, 0);
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
57
63
|
for (i = 0; i < ushared->gateways_cnt; i++) {
|
58
64
|
if (ushared->gateways[i].pid > 0) {
|
59
65
|
kill(ushared->gateways[i].pid, SIGKILL);
|
@@ -23,7 +23,7 @@ int uwsgi_regexp_build(char *re, uwsgi_pcre ** pattern) {
|
|
23
23
|
|
24
24
|
#ifdef UWSGI_PCRE2
|
25
25
|
int errnbr;
|
26
|
-
|
26
|
+
size_t erroff;
|
27
27
|
|
28
28
|
*pattern = pcre2_compile((const unsigned char *) re, PCRE2_ZERO_TERMINATED, 0, &errnbr, &erroff, NULL);
|
29
29
|
#else
|
@@ -69,7 +69,7 @@ int uwsgi_regexp_build(char *re, uwsgi_pcre ** pattern) {
|
|
69
69
|
|
70
70
|
int uwsgi_regexp_match(uwsgi_pcre *pattern, const char *subject, int length) {
|
71
71
|
#ifdef UWSGI_PCRE2
|
72
|
-
return
|
72
|
+
return uwsgi_regexp_match_ovec(pattern, subject, length, NULL, 0);
|
73
73
|
#else
|
74
74
|
return pcre_exec((const pcre *) pattern->p, (const pcre_extra *) pattern->extra, subject, length, 0, 0, NULL, 0);
|
75
75
|
#endif
|
@@ -197,7 +197,7 @@ static struct uwsgi_option uwsgi_base_options[] = {
|
|
197
197
|
{"freebind", no_argument, 0, "put socket in freebind mode", uwsgi_opt_true, &uwsgi.freebind, 0},
|
198
198
|
#endif
|
199
199
|
{"map-socket", required_argument, 0, "map sockets to specific workers", uwsgi_opt_add_string_list, &uwsgi.map_socket, 0},
|
200
|
-
{"enable-threads", no_argument, 'T', "enable threads", uwsgi_opt_true, &uwsgi.has_threads, 0},
|
200
|
+
{"enable-threads", no_argument, 'T', "enable threads (stub option this is true by default)", uwsgi_opt_true, &uwsgi.has_threads, 0},
|
201
201
|
{"no-threads-wait", no_argument, 0, "do not wait for threads cancellation on quit/reload", uwsgi_opt_true, &uwsgi.no_threads_wait, 0},
|
202
202
|
|
203
203
|
{"auto-procname", no_argument, 0, "automatically set processes name to something meaningful", uwsgi_opt_true, &uwsgi.auto_procname, 0},
|
@@ -1224,16 +1224,17 @@ void gracefully_kill(int signum) {
|
|
1224
1224
|
|
1225
1225
|
uwsgi_log("Gracefully killing worker %d (pid: %d)...\n", uwsgi.mywid, uwsgi.mypid);
|
1226
1226
|
uwsgi.workers[uwsgi.mywid].manage_next_request = 0;
|
1227
|
+
|
1227
1228
|
if (uwsgi.threads > 1) {
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1229
|
+
// Stop event_queue_wait() in other threads.
|
1230
|
+
// We use loop_stop_pipe only in threaded workers to avoid
|
1231
|
+
// unintensional behavior changes in single threaded workers.
|
1232
|
+
int fd;
|
1233
|
+
if ((fd = uwsgi.loop_stop_pipe[1]) > 0) {
|
1234
|
+
close(fd);
|
1235
|
+
uwsgi.loop_stop_pipe[1] = 0;
|
1234
1236
|
}
|
1235
1237
|
return;
|
1236
|
-
// never here
|
1237
1238
|
}
|
1238
1239
|
|
1239
1240
|
// still not found a way to gracefully reload in async mode
|
@@ -1265,6 +1266,17 @@ static void simple_goodbye_cruel_world() {
|
|
1265
1266
|
// Avoid showing same message from all threads.
|
1266
1267
|
uwsgi_log("...The work of process %d is done. Seeya!\n", getpid());
|
1267
1268
|
}
|
1269
|
+
|
1270
|
+
if (uwsgi.threads > 1) {
|
1271
|
+
// Stop event_queue_wait() in other threads.
|
1272
|
+
// We use loop_stop_pipe only in threaded workers to avoid
|
1273
|
+
// unintensional behavior changes in single threaded workers.
|
1274
|
+
int fd;
|
1275
|
+
if ((fd = uwsgi.loop_stop_pipe[1]) > 0) {
|
1276
|
+
close(fd);
|
1277
|
+
uwsgi.loop_stop_pipe[1] = 0;
|
1278
|
+
}
|
1279
|
+
}
|
1268
1280
|
}
|
1269
1281
|
|
1270
1282
|
void goodbye_cruel_world() {
|
@@ -3539,6 +3551,10 @@ void uwsgi_ignition() {
|
|
3539
3551
|
exit(1);
|
3540
3552
|
}
|
3541
3553
|
}
|
3554
|
+
if (pipe(&uwsgi.loop_stop_pipe[0])) {
|
3555
|
+
uwsgi_error("pipe()")
|
3556
|
+
exit(1);
|
3557
|
+
}
|
3542
3558
|
|
3543
3559
|
// mark the worker as "accepting" (this is a mark used by chain reloading)
|
3544
3560
|
uwsgi.workers[uwsgi.mywid].accepting = 1;
|
@@ -3835,13 +3851,6 @@ void uwsgi_init_all_apps() {
|
|
3835
3851
|
if (uwsgi.need_app) {
|
3836
3852
|
if (!uwsgi.lazy)
|
3837
3853
|
uwsgi_log("*** no app loaded. GAME OVER ***\n");
|
3838
|
-
if (uwsgi.lazy_apps) {
|
3839
|
-
if (uwsgi.master_process) {
|
3840
|
-
if (kill(uwsgi.workers[0].pid, SIGINT)) {
|
3841
|
-
uwsgi_error("kill()");
|
3842
|
-
}
|
3843
|
-
}
|
3844
|
-
}
|
3845
3854
|
exit(UWSGI_FAILED_APP_CODE);
|
3846
3855
|
}
|
3847
3856
|
else {
|
@@ -489,6 +489,21 @@ PHP_FUNCTION(uwsgi_signal) {
|
|
489
489
|
RETURN_NULL();
|
490
490
|
}
|
491
491
|
|
492
|
+
PHP_FUNCTION(uwsgi_disconnect) {
|
493
|
+
|
494
|
+
struct wsgi_request *wsgi_req = (struct wsgi_request *) SG(server_context);
|
495
|
+
|
496
|
+
php_output_end_all();
|
497
|
+
php_header();
|
498
|
+
|
499
|
+
uwsgi_disconnect(wsgi_req);
|
500
|
+
|
501
|
+
php_output_set_status(PHP_OUTPUT_DISABLED);
|
502
|
+
|
503
|
+
RETURN_NULL();
|
504
|
+
}
|
505
|
+
|
506
|
+
|
492
507
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_void, 0, 0, 0)
|
493
508
|
ZEND_END_ARG_INFO()
|
494
509
|
|
@@ -507,6 +522,7 @@ zend_function_entry uwsgi_php_functions[] = {
|
|
507
522
|
PHP_FE(uwsgi_cache_del, arginfo_void)
|
508
523
|
PHP_FE(uwsgi_cache_clear, arginfo_void)
|
509
524
|
PHP_FE(uwsgi_cache_exists, arginfo_void)
|
525
|
+
PHP_FE(uwsgi_disconnect, arginfo_void)
|
510
526
|
{ NULL, NULL, NULL},
|
511
527
|
};
|
512
528
|
|