From ae2e0b6cf2c7e66d9f06d0522ff8a482034922d8 Mon Sep 17 00:00:00 2001 From: seantywork Date: Thu, 17 Jul 2025 11:29:31 +0000 Subject: [PATCH] whitelist: Double the length of the id field in the messages Closes strongswan/strongswan#2842 --- src/libcharon/plugins/whitelist/whitelist_msg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcharon/plugins/whitelist/whitelist_msg.h b/src/libcharon/plugins/whitelist/whitelist_msg.h index c710548b22..6b6eb15302 100644 --- a/src/libcharon/plugins/whitelist/whitelist_msg.h +++ b/src/libcharon/plugins/whitelist/whitelist_msg.h @@ -53,7 +53,7 @@ struct whitelist_msg_t { /** message type */ int type; /** null terminated identity */ - char id[128]; + char id[256]; } __attribute__((packed)); #endif /** WHITELIST_MSG_H_ @}*/ -- 2.47.2