aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/platform/linux.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/platform/linux.py')
-rw-r--r--libmproxy/platform/linux.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/libmproxy/platform/linux.py b/libmproxy/platform/linux.py
index d37f0fe8..d5cfec90 100644
--- a/libmproxy/platform/linux.py
+++ b/libmproxy/platform/linux.py
@@ -3,7 +3,8 @@ import socket, struct
# Python socket module does not have this constant
SO_ORIGINAL_DST = 80
-class Resolver:
+
+class Resolver(object):
def original_addr(self, csock):
odestdata = csock.getsockopt(socket.SOL_IP, SO_ORIGINAL_DST, 16)
_, port, a1, a2, a3, a4 = struct.unpack("!HHBBBBxxxxxxxx", odestdata)