mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-24 00:31:33 +00:00
44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
"""
|
|
This module contains all valid messages layers can send to the underlying layers.
|
|
"""
|
|
from __future__ import (absolute_import, print_function, division)
|
|
|
|
|
|
class _Message(object):
|
|
def __eq__(self, other):
|
|
# Allow message == Connect checks.
|
|
if isinstance(self, other):
|
|
return True
|
|
return self is other
|
|
|
|
def __ne__(self, other):
|
|
return not self.__eq__(other)
|
|
|
|
|
|
class Connect(_Message):
|
|
"""
|
|
Connect to the server
|
|
"""
|
|
|
|
|
|
class Reconnect(_Message):
|
|
"""
|
|
Re-establish the server connection
|
|
"""
|
|
|
|
|
|
class ChangeServer(_Message):
|
|
"""
|
|
Change the upstream server.
|
|
"""
|
|
|
|
def __init__(self, address, server_tls, sni, depth=1):
|
|
self.address = address
|
|
self.server_tls = server_tls
|
|
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
|