mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-24 04:14:57 +08:00
added support for creating new requests. still wip (not working for https)
This commit is contained in:
@@ -17,6 +17,17 @@ VIEW_FLOW = 1
|
||||
VIEW_FLOW_REQUEST = 0
|
||||
VIEW_FLOW_RESPONSE = 1
|
||||
|
||||
METHOD_OPTIONS = [
|
||||
("get", "g"),
|
||||
("post", "p"),
|
||||
("put", "u"),
|
||||
("head", "h"),
|
||||
("trace", "t"),
|
||||
("delete", "d"),
|
||||
("options", "o"),
|
||||
("edit raw", "e"),
|
||||
]
|
||||
|
||||
|
||||
def highlight_key(s, k):
|
||||
l = []
|
||||
|
||||
Reference in New Issue
Block a user