diff options
author | mpp <mpp@FreeBSD.org> | 1996-01-30 23:02:38 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1996-01-30 23:02:38 +0000 |
commit | f3dd75a38d66ed54a0f2660b0a27d177fb33f068 (patch) | |
tree | d5a8ea90ac641a456fff5afceb0a72173a7abe6e /sys/netinet | |
parent | 7b3fa6ae274a3569da985e1b817e786e36f17f44 (diff) | |
download | FreeBSD-src-f3dd75a38d66ed54a0f2660b0a27d177fb33f068.zip FreeBSD-src-f3dd75a38d66ed54a0f2660b0a27d177fb33f068.tar.gz |
Fix a bunch of spelling errors in the comment fields of
a bunch of system include files.
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/igmp_var.h | 4 | ||||
-rw-r--r-- | sys/netinet/ip_icmp.h | 4 | ||||
-rw-r--r-- | sys/netinet/ip_var.h | 4 | ||||
-rw-r--r-- | sys/netinet/tcp_timer.h | 6 | ||||
-rw-r--r-- | sys/netinet/tcp_var.h | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/sys/netinet/igmp_var.h b/sys/netinet/igmp_var.h index 55ee6da1..f11b46f 100644 --- a/sys/netinet/igmp_var.h +++ b/sys/netinet/igmp_var.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)igmp_var.h 8.1 (Berkeley) 7/19/93 - * $Id: igmp_var.h,v 1.6 1995/06/13 17:51:07 wollman Exp $ + * $Id: igmp_var.h,v 1.7 1995/11/14 20:33:54 phk Exp $ */ #ifndef _NETINET_IGMP_VAR_H_ @@ -47,7 +47,7 @@ * * Written by Steve Deering, Stanford, May 1988. * - * MULTICAST Revisiob: 3.3.1.1 + * MULTICAST Revision: 3.3.1.1 */ struct igmpstat { diff --git a/sys/netinet/ip_icmp.h b/sys/netinet/ip_icmp.h index a538899..49bd819 100644 --- a/sys/netinet/ip_icmp.h +++ b/sys/netinet/ip_icmp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_icmp.h 8.1 (Berkeley) 6/10/93 - * $Id: ip_icmp.h,v 1.5 1995/11/14 20:34:13 phk Exp $ + * $Id: ip_icmp.h,v 1.6 1996/01/19 01:19:08 fenner Exp $ */ #ifndef _NETINET_IP_ICMP_H_ @@ -114,7 +114,7 @@ struct icmp { /* * Lower bounds on packet lengths for various types. * For the error advice packets must first insure that the - * packet is large enought to contain the returned ip header. + * packet is large enough to contain the returned ip header. * Only then can we do the check to see if 64 bits of packet * data have been returned, since we need to check the returned * ip header length. diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 5b4a470..0ca618d 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_var.h 8.2 (Berkeley) 1/9/95 - * $Id: ip_var.h,v 1.17 1995/12/05 17:46:25 wollman Exp $ + * $Id: ip_var.h,v 1.18 1995/12/14 09:53:45 phk Exp $ */ #ifndef _NETINET_IP_VAR_H_ @@ -136,7 +136,7 @@ struct ipstat { u_long ips_localout; /* total ip packets generated here */ u_long ips_odropped; /* lost packets due to nobufs, etc. */ u_long ips_reassembled; /* total packets reassembled ok */ - u_long ips_fragmented; /* datagrams sucessfully fragmented */ + u_long ips_fragmented; /* datagrams successfully fragmented */ u_long ips_ofragments; /* output fragments created */ u_long ips_cantfrag; /* don't fragment flag was set, etc. */ u_long ips_badoptions; /* error in option processing */ diff --git a/sys/netinet/tcp_timer.h b/sys/netinet/tcp_timer.h index aa304b4..c7e315f 100644 --- a/sys/netinet/tcp_timer.h +++ b/sys/netinet/tcp_timer.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_timer.h 8.1 (Berkeley) 6/10/93 - * $Id: tcp_timer.h,v 1.6 1995/02/14 02:35:18 wollman Exp $ + * $Id: tcp_timer.h,v 1.7 1995/11/14 20:34:45 phk Exp $ */ #ifndef _NETINET_TCP_TIMER_H_ @@ -44,7 +44,7 @@ #define TCPT_NTIMERS 4 #define TCPT_REXMT 0 /* retransmit */ -#define TCPT_PERSIST 1 /* retransmit persistance */ +#define TCPT_PERSIST 1 /* retransmit persistence */ #define TCPT_KEEP 2 /* keep alive */ #define TCPT_2MSL 3 /* 2*msl quiet time timer */ @@ -92,7 +92,7 @@ if 0, no idea yet */ #define TCPTV_SRTTDFLT ( 3*PR_SLOWHZ) /* assumed RTT if no info */ -#define TCPTV_PERSMIN ( 5*PR_SLOWHZ) /* retransmit persistance */ +#define TCPTV_PERSMIN ( 5*PR_SLOWHZ) /* retransmit persistence */ #define TCPTV_PERSMAX ( 60*PR_SLOWHZ) /* maximum persist interval */ #define TCPTV_KEEP_INIT ( 75*PR_SLOWHZ) /* initial connect keep alive */ diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 1a67aac..d1d7706 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95 - * $Id: tcp_var.h,v 1.26 1995/12/29 01:12:02 davidg Exp $ + * $Id: tcp_var.h,v 1.27 1996/01/19 08:02:34 peter Exp $ */ #ifndef _NETINET_TCP_VAR_H_ @@ -102,7 +102,7 @@ struct tcpcb { */ /* congestion control (for slow start, source quench, retransmit after loss) */ u_long snd_cwnd; /* congestion-controlled window */ - u_long snd_ssthresh; /* snd_cwnd size threshhold for + u_long snd_ssthresh; /* snd_cwnd size threshold for * for slow start exponential to * linear switch */ |