aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/platform/pf.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/platform/pf.py')
-rw-r--r--libmproxy/platform/pf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmproxy/platform/pf.py b/libmproxy/platform/pf.py
index 8c2f4678..97a4c192 100644
--- a/libmproxy/platform/pf.py
+++ b/libmproxy/platform/pf.py
@@ -13,7 +13,7 @@ def lookup(address, port, s):
if "ESTABLISHED:ESTABLISHED" in i and spec in i:
s = i.split()
if len(s) > 4:
- if sys.platform == "freebsd10":
+ if sys.platform.startswith("freebsd"):
# strip parentheses for FreeBSD pfctl
s = s[3][1:-1].split(":")
else:
@@ -21,4 +21,4 @@ def lookup(address, port, s):
if len(s) == 2:
return s[0], int(s[1])
- raise RuntimeError("Could not resolve original destination.") \ No newline at end of file
+ raise RuntimeError("Could not resolve original destination.")