diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-09-03 17:01:25 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-09-03 17:01:25 +0200 |
commit | f4272de5ec77fb57723e2274e4ddc50d73489e1e (patch) | |
tree | 2f7ad35411c29c15199f2498bb43571047c0d066 /libmproxy/proxy/modes/socks_proxy.py | |
parent | 1f6d05f89fada5fe360aa79abfa80a3c91ce54da (diff) | |
download | mitmproxy-f4272de5ec77fb57723e2274e4ddc50d73489e1e.tar.gz mitmproxy-f4272de5ec77fb57723e2274e4ddc50d73489e1e.tar.bz2 mitmproxy-f4272de5ec77fb57723e2274e4ddc50d73489e1e.zip |
remove ServerConnectionMixin.reconnect
Diffstat (limited to 'libmproxy/proxy/modes/socks_proxy.py')
-rw-r--r-- | libmproxy/proxy/modes/socks_proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/proxy/modes/socks_proxy.py b/libmproxy/proxy/modes/socks_proxy.py index ebaf939e..0efeab67 100644 --- a/libmproxy/proxy/modes/socks_proxy.py +++ b/libmproxy/proxy/modes/socks_proxy.py @@ -57,4 +57,4 @@ class Socks5Proxy(Layer, ServerConnectionMixin): layer() finally: if self.server_conn: - self._disconnect() + self.disconnect() |