Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 06/13/1996 17:50:03
cgd
Thu Jun 13 17:48:36 EDT 1996
Update of /a/cvsroot/src/sys/net
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv17268

Modified Files:
	if.h 
Log Message:
add an ifru_mtu member to the union in 'struct ifreq', and add a
#define so that ifr_mtu accesses that.  MTU shouldn't be overloaded
with ifr_metric, if only for clarity.  Adding an MTU field to the
union hurts nothing (in fact, does not actually _change_ generated
code), and does improve clarity.


cgd
Thu Jun 13 17:49:44 EDT 1996
Update of /a/cvsroot/src/sys/net
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv17313

Modified Files:
	if.c 
Log Message:
implement SIOCGIFMTU in a generic manner, by pulling the MTU out of
each netif's if_data structure.  There's no point in making each
driver implement this ioctl.