diff options
author | Martin Willi <martin@revosec.ch> | 2013-02-04 09:59:54 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2013-07-18 16:00:30 +0200 |
commit | f33d1d503f15597250c1f15eec5a21103d21e55e (patch) | |
tree | 5289e0f078f140c299b4c9019eeb2bb0f45002a4 /src | |
parent | 0a35ae781d49740c2b5df7057a439f8045e600c4 (diff) | |
download | strongswan-f33d1d503f15597250c1f15eec5a21103d21e55e.tar.bz2 strongswan-f33d1d503f15597250c1f15eec5a21103d21e55e.tar.xz |
error-notify: increase size of string/identity fields in messages
Diffstat (limited to 'src')
-rw-r--r-- | src/libcharon/plugins/error_notify/error_notify_msg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/plugins/error_notify/error_notify_msg.h b/src/libcharon/plugins/error_notify/error_notify_msg.h index d031fc4c3..759d620c6 100644 --- a/src/libcharon/plugins/error_notify/error_notify_msg.h +++ b/src/libcharon/plugins/error_notify/error_notify_msg.h @@ -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)); |