mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
Notify when proxy server started
This commit is contained in:
parent
d5427c7298
commit
d044786ac8
@ -48,6 +48,10 @@ class DumpMaster(flow.FlowMaster):
|
|||||||
self.options = self.options # type: Options
|
self.options = self.options # type: Options
|
||||||
self.set_stream_large_bodies(options.stream_large_bodies)
|
self.set_stream_large_bodies(options.stream_large_bodies)
|
||||||
|
|
||||||
|
print("Proxy server listening at http://%s:%d" % (
|
||||||
|
(options.listen_host or "0.0.0.0"),
|
||||||
|
options.listen_port))
|
||||||
|
|
||||||
if self.server and self.options.http2 and not tcp.HAS_ALPN: # pragma: no cover
|
if self.server and self.options.http2 and not tcp.HAS_ALPN: # pragma: no cover
|
||||||
print("ALPN support missing (OpenSSL 1.0.2+ required)!\n"
|
print("ALPN support missing (OpenSSL 1.0.2+ required)!\n"
|
||||||
"HTTP/2 is disabled. Use --no-http2 to silence this warning.",
|
"HTTP/2 is disabled. Use --no-http2 to silence this warning.",
|
||||||
|
Loading…
Reference in New Issue
Block a user