Default data length should be 56, not 64.

This commit is contained in:
Matthew N. Dodd 2003-03-28 00:31:51 +00:00
parent 226a0f0f8b
commit c67c1ce843
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112729

View File

@ -100,7 +100,7 @@ static const char rcsid[] =
#define TIMEVAL_LEN ((int)sizeof(struct timeval))
#define MASK_LEN (ICMP_MASKLEN - ICMP_MINLEN)
#define TS_LEN (ICMP_TSLEN - ICMP_MINLEN)
#define DEFDATALEN 64 /* default data length */
#define DEFDATALEN 56 /* default data length */
#define FLOOD_BACKOFF 20000 /* usecs to back off if F_FLOOD mode */
/* runs out of buffer space */
#define MAXIPLEN (sizeof(struct ip) + MAX_IPOPTLEN)