PERFORCE change 139814 for review

Paolo Pisati piso at FreeBSD.org
Fri Apr 11 14:57:47 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=139814

Change 139814 by piso at piso_ferret on 2008/04/11 14:57:42

	With mbuf, we don't have any limit on packet size.

Affected files ...

.. //depot/projects/soc2005/libalias/sys/netinet/ip_fw_nat.c#9 edit

Differences ...

==== //depot/projects/soc2005/libalias/sys/netinet/ip_fw_nat.c#9 (text+ko) ====

@@ -350,10 +350,10 @@
 	
 	if (args->oif == NULL)
 		retval = LibAliasIn(t->lib, &m,
-		    MCLBYTES);
+		    IP_MAXPACKET);
 	else
 		retval = LibAliasOut(t->lib, &m,
-		    MCLBYTES);
+		    IP_MAXPACKET);
 	if (retval != PKT_ALIAS_OK) {
 		printf("retval: %d", retval);
 		/* XXX - should i add some logging? */


More information about the p4-projects mailing list