From 14263ff751db1d878bad974a406737533ea6b70c Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 18 Jun 2001 14:59:36 +0000 Subject: Handle hardware-imposed MTU/MRU limitations. PPPoE will no longer allow MRU/MTU negotiations to exceed 1492. Add an optional ``max'' specifier to ``set m[rt]u'', ie. set mtu max 1480 Bump the ppp version number. Sponsored by: Monzoon Networks AG and FreeBSD Services Limited --- usr.sbin/ppp/iface.h | 1 + 1 file changed, 1 insertion(+) (limited to 'usr.sbin/ppp/iface.h') diff --git a/usr.sbin/ppp/iface.h b/usr.sbin/ppp/iface.h index 6de1b50..d520e84 100644 --- a/usr.sbin/ppp/iface.h +++ b/usr.sbin/ppp/iface.h @@ -39,6 +39,7 @@ struct iface { char *name; /* Interface name (malloc'd) */ int index; /* Interface index */ int flags; /* Interface flags (IFF_*) */ + int mtu; /* struct tuninfo MTU */ int in_addrs; /* How many in_addr's */ struct iface_addr *in_addr; /* Array of addresses (malloc'd) */ -- cgit v1.1