mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-21 02:16:26 +08: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.
5 lines
117 B
Python
5 lines
117 B
Python
IVERSION = (0, 8)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
NAME = "mitmproxy"
|
|
NAMEVERSION = NAME + " " + VERSION
|