aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2015-11-26 23:15:21 +0100
committerMaximilian Hils <git@maximilianhils.com>2015-11-26 23:15:21 +0100
commita9f64c22f8395a1251b1d94c9ce516d467ad12e4 (patch)
treefb6ebc19a43e34081d09d586c388adc28d93482a
parent89013eb7af785eb9cfa3da3ae8d6c4b78b974846 (diff)
downloadmitmproxy-a9f64c22f8395a1251b1d94c9ce516d467ad12e4.tar.gz
mitmproxy-a9f64c22f8395a1251b1d94c9ce516d467ad12e4.tar.bz2
mitmproxy-a9f64c22f8395a1251b1d94c9ce516d467ad12e4.zip
simplify Client/ServerConnection.__repr__
-rw-r--r--libmproxy/models/connections.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/libmproxy/models/connections.py b/libmproxy/models/connections.py
index ec089471..3aa522ea 100644
--- a/libmproxy/models/connections.py
+++ b/libmproxy/models/connections.py
@@ -31,10 +31,9 @@ class ClientConnection(tcp.BaseHandler, stateobject.StateObject):
return bool(self.connection) and not self.finished
def __repr__(self):
- return "<ClientConnection: {ssl}{host}:{port}>".format(
+ return "<ClientConnection: {ssl}{address}>".format(
ssl="[ssl] " if self.ssl_established else "",
- host=self.address.host,
- port=self.address.port
+ address=repr(self.address)
)
@property
@@ -109,10 +108,9 @@ class ServerConnection(tcp.TCPClient, stateobject.StateObject):
ssl = "[ssl] "
else:
ssl = ""
- return "<ServerConnection: {ssl}{host}:{port}>".format(
+ return "<ServerConnection: {ssl}{address}>".format(
ssl=ssl,
- host=self.address.host,
- port=self.address.port
+ address=repr(self.address)
)
@property