diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-02 22:51:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-02 22:51:17 +0000 |
commit | 6b54149485c3debdacbef90a6b80976ba9eb8151 (patch) | |
tree | 986e80e51212a1a6e14e249864d756260eba68e7 /sys/netinet | |
parent | 158a03c90d8296a4393d3119cbe44657e399a83e (diff) |
Ethernet, not 10 Mb/s Ethernet
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/if_ether.c | 8 | ||||
-rw-r--r-- | sys/netinet/if_ether.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 294437da182..5e5bc3a8cfa 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.15 1999/07/18 21:36:40 ho Exp $ */ +/* $OpenBSD: if_ether.c,v 1.16 1999/08/02 22:51:15 deraadt Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -431,7 +431,7 @@ arpintr() } /* - * ARP for Internet protocols on 10 Mb/s Ethernet. + * ARP for Internet protocols on Ethernet. * Algorithm is that given in RFC 826. * In addition, a sanity check is performed on the sender * protocol address, to catch impersonators. @@ -648,7 +648,7 @@ arp_ifinit(ac, ifa) } /* - * Called from 10 Mb/s Ethernet interrupt handlers + * Called from Ethernet interrupt handlers * when ether packet type ETHERTYPE_REVARP * is received. Common length and type checks are done here, * then the protocol-specific routine is called. @@ -681,7 +681,7 @@ out: } /* - * RARP for Internet protocols on 10 Mb/s Ethernet. + * RARP for Internet protocols on Ethernet. * Algorithm is that given in RFC 903. * We are only using for bootstrap purposes to get an ip address for one of * our interfaces. Thus we support no user-interface. diff --git a/sys/netinet/if_ether.h b/sys/netinet/if_ether.h index c780d8aa081..7521e3df53f 100644 --- a/sys/netinet/if_ether.h +++ b/sys/netinet/if_ether.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.h,v 1.7 1999/05/16 00:34:40 ho Exp $ */ +/* $OpenBSD: if_ether.h,v 1.8 1999/08/02 22:51:16 deraadt Exp $ */ /* $NetBSD: if_ether.h,v 1.22 1996/05/11 13:00:00 mycroft Exp $ */ /* @@ -45,7 +45,7 @@ struct ether_addr { }; /* - * Structure of a 10Mb/s Ethernet header. + * Structure of a Ethernet header. */ #define ETHER_ADDR_LEN 6 |