mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
http2: add GoAway support for client
This commit is contained in:
parent
b4d6f2e12b
commit
bc93600a66
@ -237,6 +237,11 @@ class Http2Layer(_HttpLayer):
|
||||
# simply accept them, and hide them from the log.
|
||||
# Ideally we should forward them to the server.
|
||||
return
|
||||
if isinstance(frame, GoAwayFrame):
|
||||
# Client wants to terminate the connection,
|
||||
# relay it to the server.
|
||||
self.server_conn.send(frame.to_bytes())
|
||||
return
|
||||
if isinstance(frame, PingFrame):
|
||||
# respond with pong
|
||||
self.server_conn.send(PingFrame(flags=Frame.FLAG_ACK, payload=frame.payload).to_bytes())
|
||||
|
Loading…
Reference in New Issue
Block a user