diff options
author | wollman <wollman@FreeBSD.org> | 1995-12-05 17:46:50 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-12-05 17:46:50 +0000 |
commit | da652f957ab098fb344b067be81e47188f1b90bd (patch) | |
tree | 2f45b4242e5f41f2e595831c86ed08e6d14756ea /sys/netinet/ip_output.c | |
parent | 04f89ec795e5fc73e4befd24eab6f726c36af3db (diff) | |
download | FreeBSD-src-da652f957ab098fb344b067be81e47188f1b90bd.zip FreeBSD-src-da652f957ab098fb344b067be81e47188f1b90bd.tar.gz |
Path MTU Discovery is now standard.
Diffstat (limited to 'sys/netinet/ip_output.c')
-rw-r--r-- | sys/netinet/ip_output.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 4ad5674..ca058b2 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_output.c 8.3 (Berkeley) 1/21/94 - * $Id: ip_output.c,v 1.24 1995/10/16 18:21:09 wollman Exp $ + * $Id: ip_output.c,v 1.25 1995/11/14 20:34:19 phk Exp $ */ #include <sys/param.h> @@ -337,7 +337,7 @@ sendit: */ if (ip->ip_off & IP_DF) { error = EMSGSIZE; -#ifdef MTUDISC +#if 1 /* * This case can happen if the user changed the MTU * of an interface after enabling IP on it. Because @@ -350,7 +350,7 @@ sendit: && (ro->ro_rt->rt_rmx.rmx_mtu > ifp->if_mtu)) { ro->ro_rt->rt_rmx.rmx_mtu = ifp->if_mtu; } -#endif /* MTUDISC */ +#endif ipstat.ips_cantfrag++; goto bad; } |