From 0e0a7d82de6bd13fbd021ebfe5de905aaeaacc03 Mon Sep 17 00:00:00 2001 From: likewise Date: Mon, 27 Dec 2004 14:45:12 +0000 Subject: [PATCH] Re-enabled ARP packet queueing. (Now that multi-packet queueing is disabled in etharp.c). --- src/include/lwip/opt.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index 8c134832..8e3910d5 100644 --- a/src/include/lwip/opt.h +++ b/src/include/lwip/opt.h @@ -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 */