]> Kevux Git Server - kevux-firewall/log
kevux-firewall
3 months agoUpdate: Initialize variables with recent FLL practices.
Kevin Day [Wed, 3 Dec 2025 04:05:44 +0000 (22:05 -0600)]
Update: Initialize variables with recent FLL practices.

3 months agoUpdate: Avoid the use of bool, keeping it to a bare minimum.
Kevin Day [Mon, 1 Dec 2025 01:41:55 +0000 (19:41 -0600)]
Update: Avoid the use of bool, keeping it to a bare minimum.

Use `uint8_t` to both enforce a specific byte size as well as provide the ability for it to be converted into a set of bits if need be, without breaking API or ABI.

3 months agoUpdate: To FLL f_string_static_t structure changes.
Kevin Day [Sun, 30 Nov 2025 14:08:50 +0000 (08:08 -0600)]
Update: To FLL f_string_static_t structure changes.

3 months agoUpdate: Firewall directory path structure to match other projects external to FLL.
Kevin Day [Sun, 30 Nov 2025 02:33:38 +0000 (20:33 -0600)]
Update: Firewall directory path structure to match other projects external to FLL.

The `config.c` and `config.h` should also not be included by default.

3 months agoUpdate: Add the standard .gitignore file.
Kevin Day [Sun, 30 Nov 2025 02:24:29 +0000 (20:24 -0600)]
Update: Add the standard .gitignore file.

3 months agoCleanup: Remove leading new line from config.c source file.
Kevin Day [Sun, 30 Nov 2025 02:24:02 +0000 (20:24 -0600)]
Cleanup: Remove leading new line from config.c source file.

3 months agoUpdate: Bring in the stand alone build from FLL 0.7.x.
Kevin Day [Sun, 30 Nov 2025 02:21:50 +0000 (20:21 -0600)]
Update: Bring in the stand alone build from FLL 0.7.x.

3 months agoUpdate: Latest FLL now returns F_file_descriptor_not.
Kevin Day [Fri, 28 Nov 2025 03:44:08 +0000 (21:44 -0600)]
Update: Latest FLL now returns F_file_descriptor_not.

3 months agoUpdate: Next micro version (0.7.4).
Kevin Day [Sun, 23 Nov 2025 05:04:47 +0000 (23:04 -0600)]
Update: Next micro version (0.7.4).

The following are the commands that I ran to make this change:
  # find data/ sources/ specifications/ documents/ licenses/ install.sh -type f -exec sed -i -e 's|0\.7\.3|0.7.4|g' -e 's|^version_micro 3|version_micro 4|g' '{}' ';'
  # find sources/ -name *.h -exec sed -i -e 's|_program_version_micro_s F_string_ascii_3_s|_program_version_micro_s F_string_ascii_4_s|g' -e 's|_program_version_micro_s_length F_string_ascii_3_s_length|_program_version_micro_s_length F_string_ascii_4_s_length|g' '{}' ';'
  # sed -i -e 's|version_micro 3|version_micro 4|g' data/build/settings* data/build/stand_alone/settings.*

3 months agoUpdate: Initial import, using firewall 0.7.3. 0.7.3
Kevin Day [Sun, 23 Nov 2025 04:59:39 +0000 (22:59 -0600)]
Update: Initial import, using firewall 0.7.3.

This pulls in the built project extracted from the FLL 0.7.3 release.