Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ These two rules would have to be added manually if applied on a different machin
- pypacker
- psutil
- pyyaml
- netifaces
- iptables, NFQUEUE target support in kernel for packet intercepting, CPython

### Installation
Expand Down
2 changes: 1 addition & 1 deletion fw_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def _user_decision(self, pkt, rules_wl, rules_bl):
}

@staticmethod
def verdict_cb(data, ll_proto_id, ctx):
def verdict_cb(ll_data, ll_proto_id, data, ctx):
ipl = Firewall.LL_PROTO_CB[ll_proto_id](data)
# logger.debug("verdict_cb, packet: %r", ipl)
decision_accept = False
Expand Down