Fix some inconsistent spacing; spaces at the end of lines, etc.

This commit is contained in:
mycroft 1994-01-08 21:21:28 +00:00
parent 8bcd07afc2
commit 4fe12e6e88
33 changed files with 191 additions and 193 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)if_ether.h 7.5 (Berkeley) 6/28/90
* $Id: if_ether.h,v 1.6 1993/12/30 04:17:40 deraadt Exp $
* $Id: if_ether.h,v 1.7 1994/01/08 21:21:31 mycroft Exp $
*/
#ifndef _NETINET_IF_ETHER_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)icmp_var.h 7.5 (Berkeley) 6/28/90
* $Id: icmp_var.h,v 1.3 1993/05/20 03:49:51 cgd Exp $
* $Id: icmp_var.h,v 1.4 1994/01/08 21:21:28 mycroft Exp $
*/
#ifndef _NETINET_ICMP_VAR_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)if_ether.c 7.13 (Berkeley) 10/31/90
* $Id: if_arp.c,v 1.5 1993/12/18 00:41:48 mycroft Exp $
* $Id: if_arp.c,v 1.6 1994/01/08 21:21:29 mycroft Exp $
*/
/*

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)if_ether.h 7.5 (Berkeley) 6/28/90
* $Id: if_arp.h,v 1.6 1993/12/30 04:17:40 deraadt Exp $
* $Id: if_arp.h,v 1.7 1994/01/08 21:21:31 mycroft Exp $
*/
#ifndef _NETINET_IF_ETHER_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)if_ether.c 7.13 (Berkeley) 10/31/90
* $Id: if_ether.c,v 1.5 1993/12/18 00:41:48 mycroft Exp $
* $Id: if_ether.c,v 1.6 1994/01/08 21:21:29 mycroft Exp $
*/
/*

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)if_ether.h 7.5 (Berkeley) 6/28/90
* $Id: if_ether.h,v 1.6 1993/12/30 04:17:40 deraadt Exp $
* $Id: if_ether.h,v 1.7 1994/01/08 21:21:31 mycroft Exp $
*/
#ifndef _NETINET_IF_ETHER_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)if_ether.h 7.5 (Berkeley) 6/28/90
* $Id: if_inarp.h,v 1.6 1993/12/30 04:17:40 deraadt Exp $
* $Id: if_inarp.h,v 1.7 1994/01/08 21:21:31 mycroft Exp $
*/
#ifndef _NETINET_IF_ETHER_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)in.c 7.17 (Berkeley) 4/20/91
* $Id: in.c,v 1.6 1993/12/18 00:41:50 mycroft Exp $
* $Id: in.c,v 1.7 1994/01/08 21:21:36 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)in.h 7.11 (Berkeley) 4/20/91
* $Id: in.h,v 1.4 1993/12/06 05:46:37 hpeyerl Exp $
* $Id: in.h,v 1.5 1994/01/08 21:21:38 mycroft Exp $
*/
#ifndef _NETINET_IN_H_
@ -47,7 +47,7 @@
*/
#define IPPROTO_IP 0 /* dummy for IP */
#define IPPROTO_ICMP 1 /* control message protocol */
#define IPPROTO_IGMP 2 /* group control protocol */
#define IPPROTO_IGMP 2 /* group mgmt protocol */
#define IPPROTO_GGP 3 /* gateway^2 (deprecated) */
#define IPPROTO_TCP 6 /* tcp */
#define IPPROTO_EGP 8 /* exterior gateway protocol */
@ -155,20 +155,19 @@ struct ip_opts {
* Options for use with [gs]etsockopt at the IP level.
* First word of comment is data type; bool is stored in int.
*/
#define IP_OPTIONS 1 /* buf/ip_opts; set/get IP per-packet options */
#define IP_MULTICAST_IF 2 /* set/get IP multicast interface */
#define IP_MULTICAST_TTL 3 /* set/get IP multicast timetolive */
#define IP_MULTICAST_LOOP 4 /* set/get IP multicast loopback */
#define IP_ADD_MEMBERSHIP 5 /* add an IP group membership */
#define IP_DROP_MEMBERSHIP 6 /* drop an IP group membership */
#define IP_HDRINCL 7 /* int; header is included with data (raw) */
#define IP_TOS 8 /* int; IP type of service and precedence */
#define IP_OPTIONS 1 /* buf/ip_opts; set/get IP options */
#define IP_MULTICAST_IF 2 /* u_char; set/get IP mcast i/f */
#define IP_MULTICAST_TTL 3 /* u_char; set/get IP mcast ttl */
#define IP_MULTICAST_LOOP 4 /* u_char; set/get IP mcast loopback */
#define IP_ADD_MEMBERSHIP 5 /* ip_mreq; add IP group membership */
#define IP_DROP_MEMBERSHIP 6 /* ip_mreq; drop IP group membership */
#define IP_HDRINCL 7 /* int; header is included with data */
#define IP_TOS 8 /* int; IP type of service and preced */
#define IP_TTL 9 /* int; IP time to live */
#define IP_RECVOPTS 10 /* bool; receive all IP options w/datagram */
#define IP_RECVRETOPTS 11 /* bool; receive IP options for response */
#define IP_RECVDSTADDR 12 /* bool; receive IP dst addr w/datagram */
#define IP_RETOPTS 13 /* ip_opts; set/get IP per-packet options */
#define IP_RECVOPTS 10 /* bool; receive all IP opts w/dgram */
#define IP_RECVRETOPTS 11 /* bool; receive IP opts for response */
#define IP_RECVDSTADDR 12 /* bool; receive IP dst addr w/dgram */
#define IP_RETOPTS 13 /* ip_opts; set/get IP options */
#define IP_DEFAULT_MULTICAST_TTL 1 /* normally limit m'casts to 1 hop */
#define IP_DEFAULT_MULTICAST_LOOP 1 /* normally hear sends if a member */

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)in_cksum.c 7.3 (Berkeley) 6/28/90
* $Id: in_cksum.c,v 1.4 1993/12/18 00:41:51 mycroft Exp $
* $Id: in_cksum.c,v 1.5 1994/01/08 21:21:39 mycroft Exp $
*/
#include <sys/types.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)in_pcb.c 7.14 (Berkeley) 4/20/91
* $Id: in_pcb.c,v 1.7 1993/12/18 00:41:53 mycroft Exp $
* $Id: in_pcb.c,v 1.8 1994/01/08 21:21:40 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)in_pcb.h 7.6 (Berkeley) 6/28/90
* $Id: in_pcb.h,v 1.4 1993/12/08 23:46:31 hpeyerl Exp $
* $Id: in_pcb.h,v 1.5 1994/01/08 21:21:41 mycroft Exp $
*/
#ifndef _NETINET_IN_PCB_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)in_proto.c 7.5 (Berkeley) 6/28/90
* $Id: in_proto.c,v 1.5 1993/12/18 00:41:54 mycroft Exp $
* $Id: in_proto.c,v 1.6 1994/01/08 21:21:42 mycroft Exp $
*/
#include <sys/param.h>
@ -138,7 +138,7 @@ struct protosw inetsw[] = {
0, 0, 0, 0,
},
#endif
/* raw wildcard */
/* raw wildcard */
{ SOCK_RAW, &inetdomain, 0, PR_ATOMIC|PR_ADDR,
rip_input, rip_output, 0, rip_ctloutput,
rip_usrreq,

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)in_var.h 7.6 (Berkeley) 6/28/90
* $Id: in_var.h,v 1.4 1993/12/08 23:48:05 hpeyerl Exp $
* $Id: in_var.h,v 1.5 1994/01/08 21:21:43 mycroft Exp $
*/
#ifndef _NETINET_IN_VAR_H_
@ -58,7 +58,7 @@ struct in_ifaddr {
struct sockaddr_in ia_dstaddr; /* reserve space for broadcast addr */
#define ia_broadaddr ia_dstaddr
struct sockaddr_in ia_sockmask; /* reserve space for general netmask */
struct in_multi *ia_multiaddrs; /*list of multicast addresses */
struct in_multi *ia_multiaddrs; /* list of multicast addresses */
};
struct in_aliasreq {

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)ip.h 7.10 (Berkeley) 6/28/90
* $Id: ip.h,v 1.3 1993/05/20 03:50:15 cgd Exp $
* $Id: ip.h,v 1.4 1994/01/08 21:21:44 mycroft Exp $
*/
#ifndef _NETINET_IP_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)ip_icmp.c 7.15 (Berkeley) 4/20/91
* $Id: ip_icmp.c,v 1.4 1993/12/18 00:41:56 mycroft Exp $
* $Id: ip_icmp.c,v 1.5 1994/01/08 21:21:45 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)ip_input.c 7.19 (Berkeley) 5/25/91
* $Id: ip_input.c,v 1.5 1993/12/18 00:41:57 mycroft Exp $
* $Id: ip_input.c,v 1.6 1994/01/08 21:21:47 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)ip_output.c 7.23 (Berkeley) 11/12/90
* $Id: ip_output.c,v 1.10 1994/01/07 22:16:11 cgd Exp $
* $Id: ip_output.c,v 1.11 1994/01/08 21:21:52 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)ip_var.h 7.7 (Berkeley) 6/28/90
* $Id: ip_var.h,v 1.4 1993/12/06 04:59:42 hpeyerl Exp $
* $Id: ip_var.h,v 1.5 1994/01/08 21:21:53 mycroft Exp $
*/
#ifndef _NETINET_IP_VAR_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)raw_ip.c 7.8 (Berkeley) 7/25/90
* $Id: raw_ip.c,v 1.7 1993/12/18 00:42:00 mycroft Exp $
* $Id: raw_ip.c,v 1.8 1994/01/08 21:21:55 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)tcp.h 7.7 (Berkeley) 6/28/90
* $Id: tcp.h,v 1.3 1993/05/20 03:50:31 cgd Exp $
* $Id: tcp.h,v 1.4 1994/01/08 21:21:56 mycroft Exp $
*/
#ifndef _NETINET_TCP_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)tcp_debug.c 7.6 (Berkeley) 6/28/90
* $Id: tcp_debug.c,v 1.4 1993/12/18 00:42:01 mycroft Exp $
* $Id: tcp_debug.c,v 1.5 1994/01/08 21:21:57 mycroft Exp $
*/
#ifdef TCPDEBUG

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)tcp_input.c 7.25 (Berkeley) 6/30/90
* $Id: tcp_input.c,v 1.3 1993/12/18 00:42:03 mycroft Exp $
* $Id: tcp_input.c,v 1.4 1994/01/08 21:21:58 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)tcp_output.c 7.22 (Berkeley) 8/31/90
* $Id: tcp_output.c,v 1.4 1993/12/18 00:42:05 mycroft Exp $
* $Id: tcp_output.c,v 1.5 1994/01/08 21:22:00 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)tcp_subr.c 7.20 (Berkeley) 12/1/90
* $Id: tcp_subr.c,v 1.5 1993/12/18 00:42:07 mycroft Exp $
* $Id: tcp_subr.c,v 1.6 1994/01/08 21:22:01 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)tcp_timer.c 7.18 (Berkeley) 6/28/90
* $Id: tcp_timer.c,v 1.4 1993/12/18 00:42:09 mycroft Exp $
* $Id: tcp_timer.c,v 1.5 1994/01/08 21:22:02 mycroft Exp $
*/
#include <sys/param.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)tcp_var.h 7.10 (Berkeley) 6/28/90
* $Id: tcp_var.h,v 1.3 1993/05/20 03:50:42 cgd Exp $
* $Id: tcp_var.h,v 1.4 1994/01/08 21:22:04 mycroft Exp $
*/
#ifndef _NETINET_TCP_VAR_H_

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)udp_usrreq.c 7.20 (Berkeley) 4/20/91
* $Id: udp_usrreq.c,v 1.5 1993/12/18 00:42:15 mycroft Exp $
* $Id: udp_usrreq.c,v 1.6 1994/01/08 21:22:06 mycroft Exp $
*/
#include <sys/param.h>
@ -164,7 +164,6 @@ udp_input(m, iphlen)
* compatibility we avoid the problem here rather than
* fixing the interface. Maybe 4.4BSD will remedy this?)
*/
/*
* Construct sockaddr format source address.
*/