error-notify: increase size of string/identity fields in messages

This commit is contained in:
Martin Willi
2013-07-18 16:00:30 +02:00
parent 0a35ae781d
commit f33d1d503f
@@ -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));