Releases: GyulyVGC/nullnet-firewall
Releases · GyulyVGC/nullnet-firewall
v0.2.2
v0.2.1
v0.2.0
Added
- Log capabilities for the firewall: packets are logged both in standard output
and in a SQLite database with path./log.sqlite
(#1). Firewall::update_rules
to update the rules of a previously instantiated firewall.- Quick rules: each of the rules can now be preceded by a
+
character
that will make it have higher priority (quick rule). - Comments: the file defining firewall rules can now contain comment lines
(starting with#
).
Changed
- Rules precedence logic changed from "rule with more options wins" to "rule that comes first wins"
and now quick rules are supported. Firewall::resolve_packet
now accepts aFirewallDirection
by value instead of by reference.- Renamed
Firewall::set_policy_in
toFirewall::policy_in
. - Renamed
Firewall::set_policy_out
toFirewall::policy_out
.