]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
error-notify: increase size of string/identity fields in messages
authorMartin Willi <martin@revosec.ch>
Mon, 4 Feb 2013 08:59:54 +0000 (09:59 +0100)
committerMartin Willi <martin@revosec.ch>
Thu, 18 Jul 2013 14:00:30 +0000 (16:00 +0200)
src/libcharon/plugins/error_notify/error_notify_msg.h

index d031fc4c34d2851b2cda4dd36af3f7e8c3aaf037..759d620c64bba26082adbbd8be966934c52de689 100644 (file)
@@ -54,11 +54,11 @@ struct error_notify_msg_t {
        /** message type */
        int type;
        /** string with an error description */
-       char str[128];
+       char str[384];
        /** connection name, if known */
        char name[64];
        /** peer identity, if known */
-       char id[128];
+       char id[256];
        /** peer address and port, if known */
        char ip[60];
 } __attribute__((packed));