mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-04-15 23:42:33 +00:00
Moved ETHARP_ALWAYS_INSERT switch to lwipopts.h
This commit is contained in:
parent
0f3e8c19e8
commit
ced453a72b
@ -121,6 +121,15 @@ a lot of data that needs to be copied, this should be set high. */
|
|||||||
/* ---------- ARP options ---------- */
|
/* ---------- ARP options ---------- */
|
||||||
#define ARP_TABLE_SIZE 10
|
#define ARP_TABLE_SIZE 10
|
||||||
#define ARP_QUEUEING 0
|
#define ARP_QUEUEING 0
|
||||||
|
/**
|
||||||
|
* - If enabled, cache entries are generated for every kind of ARP traffic or
|
||||||
|
* broadcast IP traffic. This enhances behaviour for sending to a dynamic set
|
||||||
|
* of hosts, for example if acting as a gateway.
|
||||||
|
* - If disabled, cache entries are generated only for IP destination addresses
|
||||||
|
* in use by lwIP or applications. This enhances performance if sending to a small,
|
||||||
|
* reasonably static number of hosts. Typically for embedded devices.
|
||||||
|
*/
|
||||||
|
#define ETHARP_ALWAYS_INSERT 0
|
||||||
|
|
||||||
/* ---------- IP options ---------- */
|
/* ---------- IP options ---------- */
|
||||||
/* Define IP_FORWARD to 1 if you wish to have the ability to forward
|
/* Define IP_FORWARD to 1 if you wish to have the ability to forward
|
||||||
|
@ -124,6 +124,15 @@ a lot of data that needs to be copied, this should be set high. */
|
|||||||
/* ---------- ARP options ---------- */
|
/* ---------- ARP options ---------- */
|
||||||
#define ARP_TABLE_SIZE 10
|
#define ARP_TABLE_SIZE 10
|
||||||
#define ARP_QUEUEING 1
|
#define ARP_QUEUEING 1
|
||||||
|
/**
|
||||||
|
* - If enabled, cache entries are generated for every kind of ARP traffic or
|
||||||
|
* broadcast IP traffic. This enhances behaviour for sending to a dynamic set
|
||||||
|
* of hosts, for example if acting as a gateway.
|
||||||
|
* - If disabled, cache entries are generated only for IP destination addresses
|
||||||
|
* in use by lwIP or applications. This enhances performance if sending to a small,
|
||||||
|
* reasonably static number of hosts. Typically for embedded devices.
|
||||||
|
*/
|
||||||
|
#define ETHARP_ALWAYS_INSERT 1
|
||||||
|
|
||||||
/* ---------- IP options ---------- */
|
/* ---------- IP options ---------- */
|
||||||
/* Define IP_FORWARD to 1 if you wish to have the ability to forward
|
/* Define IP_FORWARD to 1 if you wish to have the ability to forward
|
||||||
|
@ -122,6 +122,15 @@ a lot of data that needs to be copied, this should be set high. */
|
|||||||
/* ---------- ARP options ---------- */
|
/* ---------- ARP options ---------- */
|
||||||
#define ARP_TABLE_SIZE 10
|
#define ARP_TABLE_SIZE 10
|
||||||
#define ARP_QUEUEING 1
|
#define ARP_QUEUEING 1
|
||||||
|
/**
|
||||||
|
* - If enabled, cache entries are generated for every kind of ARP traffic or
|
||||||
|
* broadcast IP traffic. This enhances behaviour for sending to a dynamic set
|
||||||
|
* of hosts, for example if acting as a gateway.
|
||||||
|
* - If disabled, cache entries are generated only for IP destination addresses
|
||||||
|
* in use by lwIP or applications. This enhances performance if sending to a small,
|
||||||
|
* reasonably static number of hosts. Typically for embedded devices.
|
||||||
|
*/
|
||||||
|
#define ETHARP_ALWAYS_INSERT 1
|
||||||
|
|
||||||
|
|
||||||
/* ---------- IP options ---------- */
|
/* ---------- IP options ---------- */
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
* 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.20 2003/01/08 10:49:16 likewise
|
* Revision 1.21 2003/01/08 11:04:36 likewise
|
||||||
* Added check if ARP_QUEUEING is 1 for a queueing related debug statement.
|
* Moved ETHARP_ALWAYS_INSERT switch to lwipopts.h
|
||||||
*
|
*
|
||||||
* Revision 1.19 2003/01/08 10:09:43 likewise
|
* Revision 1.19 2003/01/08 10:09:43 likewise
|
||||||
* Updated lwIP module copyright years to include 2003. Committers must check theirs.
|
* Updated lwIP module copyright years to include 2003. Committers must check theirs.
|
||||||
@ -103,15 +103,6 @@ RFC 3220 4.6 IP Mobility Support for IPv4 January 2002
|
|||||||
/** the time an ARP entry stays pending after first request, (2 * 10) seconds = 20 seconds. */
|
/** the time an ARP entry stays pending after first request, (2 * 10) seconds = 20 seconds. */
|
||||||
#define ARP_MAXPENDING 2
|
#define ARP_MAXPENDING 2
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* - If enabled, cache entries are generated for every kind of ARP/IP traffic.
|
|
||||||
* This enhances behaviour for sending to a dynamic set of hosts, for example
|
|
||||||
* if acting as a gateway.
|
|
||||||
* - If disabled, cache entries are generated only for IP destination addresses
|
|
||||||
* in use by lwIP or applications. This enhances performance if sending to a small,
|
|
||||||
* reasonably static number of hosts. Typically for embedded devices.
|
|
||||||
*/
|
|
||||||
#ifndef ETHARP_ALWAYS_INSERT
|
#ifndef ETHARP_ALWAYS_INSERT
|
||||||
# define ETHARP_ALWAYS_INSERT 1
|
# define ETHARP_ALWAYS_INSERT 1
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user