diff options
author | fenner <fenner@FreeBSD.org> | 1996-10-21 23:05:57 +0000 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 1996-10-21 23:05:57 +0000 |
commit | e6dd1aae14b363028ee8042c459a446159ed3660 (patch) | |
tree | f4dd8012be9687f24fa08ad4c4e471c886e3200e /sys/net | |
parent | ff1e30c98bbdb6496e3a24cf583b3cdcc9787324 (diff) | |
download | FreeBSD-src-e6dd1aae14b363028ee8042c459a446159ed3660.zip FreeBSD-src-e6dd1aae14b363028ee8042c459a446159ed3660.tar.gz |
Fix comments, which appear to have been mangled long ago and far away.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index 1f08bcb..67a7c17 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if.h 8.1 (Berkeley) 6/10/93 - * $Id: if.h,v 1.34 1996/08/26 23:17:17 julian Exp $ + * $Id: if.h,v 1.35 1996/10/12 19:49:22 bde Exp $ */ #ifndef _NET_IF_H_ @@ -77,6 +77,10 @@ struct socket; struct ether_header; #endif +/* + * Structure describing information about an interface + * which may be of interest to management entities. + */ struct if_data { /* generic interface information */ u_char ifi_type; /* ethernet, tokenring, etc */ @@ -107,10 +111,7 @@ struct if_data { /* * Structure defining a queue for a network interface. - * - * (Would like to call this struct ``if'', but C isn't PL/1.) */ - struct ifqueue { struct mbuf *ifq_head; struct mbuf *ifq_tail; @@ -120,8 +121,9 @@ struct ifqueue { }; /* - * Structure describing information about an interface - * which may be of interest to management entities. + * Structure defining a network interface. + * + * (Would like to call this struct ``if'', but C isn't PL/1.) */ struct ifnet { void *if_softc; /* pointer to driver state */ |