summaryrefslogtreecommitdiffstats
path: root/sshuttle
diff options
context:
space:
mode:
authorAnthony Cornehl <accornehl@fastmail.fm>2019-09-10 14:05:28 -0700
committerBrian May <brian@linuxpenguins.xyz>2019-09-22 10:29:28 +1000
commit21ef365c59dfff0fa460d60514560a7d10dcf0a0 (patch)
tree08ca03f52d6e1e62611801b78b68fa62ef8afdac /sshuttle
parenta765aa3235bf5213cd6430220873c594ad1fd677 (diff)
The size of pf_rule grew in OpenBSD 6.4
Diffstat (limited to 'sshuttle')
-rw-r--r--sshuttle/methods/pf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshuttle/methods/pf.py b/sshuttle/methods/pf.py
index 32987ed..e73542d 100644
--- a/sshuttle/methods/pf.py
+++ b/sshuttle/methods/pf.py
@@ -262,7 +262,7 @@ class OpenBsd(Generic):
("proto_variant", c_uint8),
("direction", c_uint8)]
- self.pfioc_rule = c_char * 3416
+ self.pfioc_rule = c_char * 3424
self.pfioc_natlook = pfioc_natlook
super(OpenBsd, self).__init__()