For now our LRO code (tcp_lro.c) only supports IPv4 properly thus

only enable if INET is on.

Reviewed by:	kmacy
MFC after:	2 months
This commit is contained in:
Bjoern A. Zeeb 2008-11-06 10:35:46 +00:00
parent 34627f9384
commit ca6bc428e7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184715

View File

@ -110,7 +110,10 @@ struct t3_mbuf_hdr {
#endif
#if __FreeBSD_version >= 701000
#include "opt_inet.h"
#ifdef INET
#define LRO_SUPPORTED
#endif
#define TOE_SUPPORTED
#endif