]> Kevux Git Server - fll/commit
Feature: The firewall program should have better IPv4 vs IPv6 support.
authorKevin Day <Kevin@kevux.org>
Thu, 19 Sep 2024 03:52:32 +0000 (22:52 -0500)
committerKevin Day <Kevin@kevux.org>
Thu, 19 Sep 2024 03:52:32 +0000 (22:52 -0500)
commitfadb352cb4613722ac3d32a24e7c0d681c274a1f
tree1d93a7c8e37d87eac2886b8afc1d9164b79a25c4
parentc750a9f95ada891a3d28872103a073dc7be88bcc
Feature: The firewall program should have better IPv4 vs IPv6 support.

Add two parameters to explicitly chose between IPv4 and IPv6 (`-4` and `-6`, respectively).
The default behavior is to display both.
This default `firewall show` will now therefore show both IPv4 and IPv6.

Add `(IPv4)` and `(IPv6)` to the output from the `firewall show` command.

When the firewall rules set the tool to either IPv4 or IPv6 but the command line is designating that either IPv4 or IPv6 is specifically enabled or not, then do operate on the tools that are not enabled.
Therefore if the firewall rules have an IPv6 tool (as is the case in the example/default settings for `icmpv6`) and something like `firewall start -4` is used then those IPv6 ruls are ignored.
13 files changed:
level_3/firewall/c/main/common.c
level_3/firewall/c/main/common/define.h
level_3/firewall/c/main/common/enumeration.h
level_3/firewall/c/main/common/string.c
level_3/firewall/c/main/common/string.h
level_3/firewall/c/main/main.c
level_3/firewall/c/main/operate/create.c
level_3/firewall/c/main/operate/default.c
level_3/firewall/c/main/operate/delete.c
level_3/firewall/c/main/operate/process.c
level_3/firewall/c/main/operate/show.c
level_3/firewall/c/main/print/message.c
level_3/firewall/c/main/print/message.h