Skip to content

Commit

Permalink
Merge pull request #34 from netfoundry/v0.5.17-release-candidate
Browse files Browse the repository at this point in the history
refactored if_list to support dynamic interface by changing to __u32
  • Loading branch information
r-caamano committed May 7, 2024
2 parents a2da7c4 + 0a7fd5f commit 7bd9b62
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -3,12 +3,20 @@
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

---
# [0.5.16] - 2024-05-07

###

-- Refactored changed struct tproxy_port_mapping if_list from __u8 to __u32 to allow for dynamic interfaces
i.e. tun with the -P, --per-interface-rules option

# [0.5.16] - 2024-04-26

###
-- Refactored interface_map() in zfw.c to mitigate a potential memory leak in corner case where a user
manually enables zfw with ziti-edge-tunnel and non default cidr.

###

# [0.5.15] - 2024-04-12

###
Expand Down
4 changes: 2 additions & 2 deletions src/zfw.c
Expand Up @@ -168,7 +168,7 @@ char *tc_interface;
char *log_file_name;
char *object_file;
char *direction_string;
const char *argp_program_version = "0.5.16";
const char *argp_program_version = "0.5.17";
struct ring_buffer *ring_buffer;

__u8 if_list[MAX_IF_LIST_ENTRIES];
Expand Down Expand Up @@ -249,7 +249,7 @@ struct tproxy_port_mapping
__u16 low_port;
__u16 high_port;
__u16 tproxy_port;
__u8 if_list[MAX_IF_LIST_ENTRIES];
__u32 if_list[MAX_IF_LIST_ENTRIES];
};

struct tproxy_tuple
Expand Down
2 changes: 1 addition & 1 deletion src/zfw_tc_ingress.c
Expand Up @@ -71,7 +71,7 @@ struct tproxy_port_mapping {
__u16 low_port;
__u16 high_port;
__u16 tproxy_port;
__u8 if_list[MAX_IF_LIST_ENTRIES];
__u32 if_list[MAX_IF_LIST_ENTRIES];
};

struct tproxy_tuple {
Expand Down

0 comments on commit 7bd9b62

Please sign in to comment.