Deleted Added
full compact
netintro.4 (50476) netintro.4 (57676)
1.\" Copyright (c) 1983, 1990, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 16 unchanged lines hidden (view full) ---

25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)netintro.4 8.2 (Berkeley) 11/30/93
1.\" Copyright (c) 1983, 1990, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 16 unchanged lines hidden (view full) ---

25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)netintro.4 8.2 (Berkeley) 11/30/93
33.\" $FreeBSD: head/share/man/man4/netintro.4 50476 1999-08-28 00:22:10Z peter $
33.\" $FreeBSD: head/share/man/man4/netintro.4 57676 2000-03-01 14:50:24Z sheldonh $
34.\"
35.Dd November 30, 1993
36.Dt NETINTRO 4
37.Os BSD 4.2
38.Sh NAME
39.Nm networking
40.Nd introduction to networking facilities
41.Sh SYNOPSIS

--- 77 unchanged lines hidden (view full) ---

119.Tn IDP
120protocol of Xerox
121.Tn NS .
122Consult the appropriate manual pages in this section for more
123information regarding the support for each protocol family.
124.Sh ADDRESSING
125Associated with each protocol family is an address
126format. All network address adhere to a general structure,
34.\"
35.Dd November 30, 1993
36.Dt NETINTRO 4
37.Os BSD 4.2
38.Sh NAME
39.Nm networking
40.Nd introduction to networking facilities
41.Sh SYNOPSIS

--- 77 unchanged lines hidden (view full) ---

119.Tn IDP
120protocol of Xerox
121.Tn NS .
122Consult the appropriate manual pages in this section for more
123information regarding the support for each protocol family.
124.Sh ADDRESSING
125Associated with each protocol family is an address
126format. All network address adhere to a general structure,
127called a sockaddr, described below. However, each protocol
127called a sockaddr, described below.
128However, each protocol
128imposes finer and more specific structure, generally renaming
129the variant, which is discussed in the protocol family manual
130page alluded to above.
131.Bd -literal -offset indent
132 struct sockaddr {
133 u_char sa_len;
134 u_char sa_family;
135 char sa_data[14];

--- 200 unchanged lines hidden ---
129imposes finer and more specific structure, generally renaming
130the variant, which is discussed in the protocol family manual
131page alluded to above.
132.Bd -literal -offset indent
133 struct sockaddr {
134 u_char sa_len;
135 u_char sa_family;
136 char sa_data[14];

--- 200 unchanged lines hidden ---