Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Apr 2008 14:57:46 GMT
From:      Paolo Pisati <piso@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 139814 for review
Message-ID:  <200804111457.m3BEvkH9037443@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=139814

Change 139814 by piso@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? */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200804111457.m3BEvkH9037443>