fixed bug #34681 Limit ARP queue length by ARP_QUEUE_LEN (=3)

This commit is contained in:
Simon Goldschmidt
2014-02-22 21:38:56 +01:00
parent 05a967564a
commit 07fbe82305
3 changed files with 23 additions and 0 deletions

View File

@@ -481,6 +481,14 @@
#define ARP_QUEUEING 0
#endif
/** The maximum number of packets which may be queued for each
* unresolved address by other network layers. Defaults to 3, 0 means disabled.
* Old packets are dropped, new packets are queued.
*/
#ifndef ARP_QUEUE_LEN
#define ARP_QUEUE_LEN 3
#endif
/**
* ETHARP_TRUST_IP_MAC==1: Incoming IP packets cause the ARP table to be
* updated with the source MAC and IP addresses supplied in the packet.