mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-04 11:47:14 +00:00
This commit adds:
- A WSGI App adapter for mitmproxy
- An app registry in the proxy instance that lets us link WSGI apps with
(hostname, port) combinations.
- Fixes for a number of bugs discovered while creating this feature.
4 lines
117 B
Python
4 lines
117 B
Python
IVERSION = (0, 8)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
NAME = "mitmproxy"
|
|
NAMEVERSION = NAME + " " + VERSION
|