From: Guy Harris Date: Mon, 20 Jan 2014 03:19:22 +0000 (-0800) Subject: The interval in an AODV HELLO extension is not aligned on a 4-byte boundary. X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/baff662fccd6008593b6b6902cedb50ba4da5dbe The interval in an AODV HELLO extension is not aligned on a 4-byte boundary. --- diff --git a/aodv.h b/aodv.h index 18467d57..000bd994 100644 --- a/aodv.h +++ b/aodv.h @@ -161,8 +161,9 @@ struct aodv_ext { struct aodv_hello { struct aodv_ext eh; /* extension header */ - u_int32_t interval; /* expect my next hello in - * (n) ms */ + u_int8_t interval[4]; /* expect my next hello in + * (n) ms + * NOTE: this is not aligned */ }; #define AODV_EXT_HELLO 1