From 07f84edf9d548be367a5525f38e8ffe7f64353eb Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 21 Jan 2021 11:48:52 +0100 Subject: [PATCH] Change wildcard_dst to short to reduce the size of struct access_control_list --- project.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.h b/project.h index d82c85d8..ffe6d0ae 100644 --- a/project.h +++ b/project.h @@ -1358,7 +1358,7 @@ struct access_control_list struct access_control_addr src[1]; /**< Client IP address */ struct access_control_addr dst[1]; /**< Website or parent proxy IP address */ #ifdef HAVE_RFC2553 - int wildcard_dst; /** < dst address is wildcard */ + short wildcard_dst; /** < dst address is wildcard */ #endif short action; /**< ACL_PERMIT or ACL_DENY */ -- 2.39.2