mitmproxy/libmproxy/protocol2/messages.py

49 lines
1.1 KiB
Python
Raw Normal View History

2015-07-24 11:31:55 +00:00
"""
This module contains all valid messages layers can send to the underlying layers.
"""
from __future__ import (absolute_import, print_function, division)
2015-07-24 11:31:55 +00:00
class _Message(object):
def __eq__(self, other):
# Allow message == Connect checks.
if isinstance(self, other):
return True
return self is other
2015-07-24 15:48:27 +00:00
def __ne__(self, other):
return not self.__eq__(other)
2015-07-24 11:31:55 +00:00
class Connect(_Message):
"""
Connect to the server
"""
class Reconnect(_Message):
"""
Re-establish the server connection
"""
2015-08-15 18:20:46 +00:00
class SetServer(_Message):
2015-07-24 11:31:55 +00:00
"""
Change the upstream server.
"""
def __init__(self, address, server_tls, sni, depth=1):
2015-07-24 11:31:55 +00:00
self.address = address
self.server_tls = server_tls
2015-07-24 11:31:55 +00:00
self.sni = sni
# upstream proxy scenario: you may want to change either the final target or the upstream proxy.
# We can express this neatly as the "nth-server-providing-layer"
# ServerConnection could get a `via` attribute.
self.depth = depth
2015-08-14 14:49:52 +00:00
class Kill(_Message):
"""
Kill a connection.
"""