mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 02:24:18 +00:00
6dcfc35011
used for generic HTTP representation everything should apply for HTTP/1 and HTTP/2
24 lines
537 B
Python
24 lines
537 B
Python
class Response(object):
|
|
|
|
def __init__(
|
|
self,
|
|
httpversion,
|
|
status_code,
|
|
msg,
|
|
headers,
|
|
content,
|
|
sslinfo=None,
|
|
):
|
|
self.httpversion = httpversion
|
|
self.status_code = status_code
|
|
self.msg = msg
|
|
self.headers = headers
|
|
self.content = content
|
|
self.sslinfo = sslinfo
|
|
|
|
def __eq__(self, other):
|
|
return self.__dict__ == other.__dict__
|
|
|
|
def __repr__(self):
|
|
return "Response(%s - %s)" % (self.status_code, self.msg)
|