mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 21:14:09 +00:00
ETHARP_SNOOP_UPDATES made externally configurable.
This commit is contained in:
parent
58d748a8ad
commit
4beff6c2cf
@ -3,6 +3,9 @@
|
|||||||
* Address Resolution Protocol module for IP over Ethernet
|
* Address Resolution Protocol module for IP over Ethernet
|
||||||
*
|
*
|
||||||
* $Log: etharp.c,v $
|
* $Log: etharp.c,v $
|
||||||
|
* Revision 1.9 2002/11/15 12:41:59 likewise
|
||||||
|
* ETHARP_SNOOP_UPDATES made externally configurable.
|
||||||
|
*
|
||||||
* Revision 1.8 2002/11/13 09:10:19 likewise
|
* Revision 1.8 2002/11/13 09:10:19 likewise
|
||||||
* ARP entries can now be updated (but not added) on any ARP traffic. Set #define ETHARP_SNOOP_UPDATES 1 to enable.
|
* ARP entries can now be updated (but not added) on any ARP traffic. Set #define ETHARP_SNOOP_UPDATES 1 to enable.
|
||||||
*
|
*
|
||||||
@ -93,7 +96,10 @@ RFC 3220 4.6 IP Mobility Support for IPv4 January 2002
|
|||||||
#define ARP_MAXPENDING 2
|
#define ARP_MAXPENDING 2
|
||||||
|
|
||||||
/** dis/enable existing ARP entries updates on any ARP traffic */
|
/** dis/enable existing ARP entries updates on any ARP traffic */
|
||||||
#define ETHARP_SNOOP_UPDATES 0
|
#ifndef ETHARP_SNOOP_UPDATES
|
||||||
|
# define ETHARP_SNOOP_UPDATES 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define HWTYPE_ETHERNET 1
|
#define HWTYPE_ETHERNET 1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user