Re-enabled ARP packet queueing. (Now that multi-packet queueing is disabled in etharp.c).

This commit is contained in:
likewise 2004-12-27 14:45:12 +00:00
parent dfa96852f0
commit 0e0a7d82de

View File

@ -165,11 +165,16 @@ a lot of data that needs to be copied, this should be set high. */
* If enabled, outgoing packets are queued during hardware address
* resolution.
*
* This feature has not stabilized yet. Defaults to 0 (disabled).
* This feature has not stabilized yet. Single-packet queueing is
* believed to be stable, multi-packet queueing is believed to
* clash with the TCP segment queueing.
*
* As multi-packet-queueing is currently disabled, enabling this
* _should_ work, but we need your testing feedback on lwip-users.
*
*/
#ifndef ARP_QUEUEING
#define ARP_QUEUEING 0
#define ARP_QUEUEING 1
#endif
/* This option is deprecated */