summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorangelos <angelos@openbsd.org>2000-01-06 04:11:37 +0000
committerangelos <angelos@openbsd.org>2000-01-06 04:11:37 +0000
commit2ac6c4ac1c395132e0d0c301024f1b212a6b27c4 (patch)
treee5e480b2a78145c897d0a627477ebfb0ceae6ff6
parentAdded support for MVME177 (diff)
downloadwireguard-openbsd-2ac6c4ac1c395132e0d0c301024f1b212a6b27c4.tar.xz
wireguard-openbsd-2ac6c4ac1c395132e0d0c301024f1b212a6b27c4.zip
Remove obsolete IMP man page.
-rw-r--r--share/man/man4/Makefile4
-rw-r--r--share/man/man4/imp.4111
2 files changed, 2 insertions, 113 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index 5ca7a6d3682..c91e08e6ceb 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.91 1999/12/19 03:14:27 itojun Exp $
+# $OpenBSD: Makefile,v 1.92 2000/01/06 04:11:37 angelos Exp $
# $NetBSD: Makefile,v 1.22.4.2 1996/07/18 00:51:10 jtc Exp $
MAN= ac97.4 atalk.4 atapiscsi.4 audio.4 adv.4 ahc.4 al.4 ax.4 bpf.4 \
bridge.4 ccd.4 cd.4 ch.4 clnp.4 cltp.4 cnw.4 dc.4 ddb.4 de.4 drum.4 \
eap.4 ec.4 ef.4 enc.4 ep.4 esis.4 eso.4 ess.4 exphy.4 fd.4 \
ffs_softupdates.4 fpa.4 fxp.4 icmp.4 icsphy.4 idp.4 ifmedia.4 \
- imp.4 inet.4 inphy.4 iophy.4 ip.4 ipl.4 ipsec.4 \
+ inet.4 inphy.4 iophy.4 ip.4 ipl.4 ipsec.4 \
isapnp.4 iso.4 isp.4 ksyms.4 lkm.4 lmc.4 lo.4 lxtphy.4 midi.4 mii.4 \
mtdphy.4 mtio.4 mx.4 ncr.4 ne.4 netintro.4 ns.4 nsip.4 nsphy.4 null.4 \
opl.4 options.4 pciide.4 pcmcia.4 pn.4 pty.4 qsphy.4 raid.4 random.4 \
diff --git a/share/man/man4/imp.4 b/share/man/man4/imp.4
deleted file mode 100644
index a8fef2e492f..00000000000
--- a/share/man/man4/imp.4
+++ /dev/null
@@ -1,111 +0,0 @@
-.\" $NetBSD: imp.4,v 1.3 1994/11/30 16:22:16 jtc Exp $
-.\"
-.\" Copyright (c) 1983, 1991 The Regents of the University of California.
-.\" All rights reserved.
-.\"
-.\" Redistribution and use in source and binary forms, with or without
-.\" modification, are permitted provided that the following conditions
-.\" are met:
-.\" 1. Redistributions of source code must retain the above copyright
-.\" notice, this list of conditions and the following disclaimer.
-.\" 2. Redistributions in binary form must reproduce the above copyright
-.\" notice, this list of conditions and the following disclaimer in the
-.\" documentation and/or other materials provided with the distribution.
-.\" 3. All advertising materials mentioning features or use of this software
-.\" must display the following acknowledgement:
-.\" This product includes software developed by the University of
-.\" California, Berkeley and its contributors.
-.\" 4. Neither the name of the University nor the names of its contributors
-.\" may be used to endorse or promote products derived from this software
-.\" without specific prior written permission.
-.\"
-.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-.\" SUCH DAMAGE.
-.\"
-.\" @(#)imp.4 6.5 (Berkeley) 3/28/91
-.\"
-.Dd March 28, 1991
-.Dt IMP 4
-.Os
-.Sh NAME
-.Nm imp
-.Nd
-.Tn IMP
-raw socket interface
-.Sh SYNOPSIS
-.Fd #include <sys/socket.h>
-.Fd #include <netinet/in.h>
-.Fd #include <netimp/if_imp.h>
-.Ft int
-.Fn socket AF_IMPLINK SOCK_RAW proto
-.Sh DESCRIPTION
-The raw imp socket provides direct access to the
-.Nm imp
-network interface. Users send packets through
-the interface using the
-.Xr send 2
-calls, and receive packets with the
-.Xr recv 2 ,
-calls. All outgoing packets must have an 1822 96-bit
-leader on the front. Likewise, packets received
-by the user will have this leader on the front. The
-1822 leader and the legal values for the various fields
-are defined in the include file
-.Aq Pa netimp/if_imp.h .
-The raw imp interface automatically installs the length
-and destination address in the 1822 leader of all
-outgoing packets; these need not be filled in by the user.
-.Pp
-If the protocol selected,
-.Fa proto ,
-is zero,
-the socket will receive
-all
-.Tn IMP
-messages except RFNM and incompletes
-which are not input data for a kernel protocol.
-If
-.Fa proto
-is non-zero,
-only messages for the specified link type will be received.
-.Sh DIAGNOSTICS
-An operation on a socket may fail with one of the following
-errors:
-.Bl -tag -width [EADDRNOTAVAIL]
-.It Bq Er EISCONN
-when trying to establish a connection on a socket which
-already has one, or when trying to send a datagram with the destination
-address specified and the socket is already connected;
-.It Bq Er ENOTCONN
-when trying to send a datagram, but
-no destination address is specified, and the socket hasn't been
-connected;
-.It Bq Er ENOBUFS
-when the system runs out of memory for
-an internal data structure;
-.It Bq Er ENOBUFS
-eight messages to the destination host are outstanding,
-and another eight are already queued for output;
-.It Bq Er EADDRNOTAVAIL
-when an attempt is made to create a
-socket with a network address for which no network interface
-exists.
-.El
-.Sh SEE ALSO
-.Xr imp 4 ,
-.Xr inet 4 ,
-.Xr netintro 4
-.Sh HISTORY
-The
-.Nm
-driver appeared in
-.Bx 4.2 .