Prevented a race condition between a new ARP request and the ARP timer.

Timeouts stay the same (halved the ARP timer, doubled the counts), but
ETHARP_MAX_PENDING should be at least 2 to prevent it from reaching 0 right away,
giving too little time for any ARP responses to be noted.
This commit is contained in:
likewise
2004-11-28 18:00:20 +00:00
parent a5cd3fcafd
commit ed59dc1ada
2 changed files with 13 additions and 5 deletions

View File

@@ -107,7 +107,8 @@ PACK_STRUCT_END
# include "arch/epstruct.h"
#endif
#define ARP_TMR_INTERVAL 10000
/** 5 seconds period */
#define ARP_TMR_INTERVAL 5000
#define ETHTYPE_ARP 0x0806
#define ETHTYPE_IP 0x0800