diff options
| author | Mike Pritchard <mpp@FreeBSD.org> | 1997-01-30 23:57:31 +0000 |
|---|---|---|
| committer | Mike Pritchard <mpp@FreeBSD.org> | 1997-01-30 23:57:31 +0000 |
| commit | c18460f90ea5e09567cb35b582aeeeeba393dfbe (patch) | |
| tree | c2fbae1fc414e6da62474f5f0d9ac07590ccb2b0 | |
| parent | cb7ecbe37a633bce5cbac59a3007cc872a3ac55f (diff) | |
Notes
| -rw-r--r-- | share/man/man4/netintro.4 | 4 | ||||
| -rw-r--r-- | share/man/man4/route.4 | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/share/man/man4/netintro.4 b/share/man/man4/netintro.4 index 164e0a27e283..22300bf744a4 100644 --- a/share/man/man4/netintro.4 +++ b/share/man/man4/netintro.4 @@ -196,6 +196,8 @@ struct ifreq { struct sockaddr ifru_broadaddr; short ifru_flags; int ifru_metric; + int ifru_mtu; + int ifru_phys; caddr_t ifru_data; } ifr_ifru; #define ifr_addr ifr_ifru.ifru_addr /* address */ @@ -203,6 +205,8 @@ struct ifreq { #define ifr_broadaddr ifr_ifru.ifru_broadaddr /* broadcast address */ #define ifr_flags ifr_ifru.ifru_flags /* flags */ #define ifr_metric ifr_ifru.ifru_metric /* metric */ +#define ifr_mtu ifr_ifru.ifru_mtu /* mtu */ +#define ifr_phys ifr_ifru.ifru_phys /* physical wire */ #define ifr_data ifr_ifru.ifru_data /* for use by interface */ }; .Ed diff --git a/share/man/man4/route.4 b/share/man/man4/route.4 index 408aa527c654..353b95546271 100644 --- a/share/man/man4/route.4 +++ b/share/man/man4/route.4 @@ -203,11 +203,11 @@ struct rt_msghdr { u_char rtm_version; /* future binary compatibility */ u_char rtm_type; /* message type */ u_short rmt_index; /* index for associated ifp */ - pid_t rmt_pid; /* identify sender */ + int rtm_flags; /* flags, incl kern & message, e.g. DONE */ int rtm_addrs; /* bitmask identifying sockaddrs in msg */ + pid_t rmt_pid; /* identify sender */ int rtm_seq; /* for sender to identify action */ int rtm_errno; /* why failed */ - int rtm_flags; /* flags, incl kern & message, e.g. DONE */ int rtm_use; /* from rtentry */ u_long rtm_inits; /* which values we are initializing */ struct rt_metrics rtm_rmx; /* metrics themselves */ |
