aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-05-24 16:47:10 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-05-24 16:47:10 +0000
commitc37538200ebdef38051ba82b76e6b2dab3bd2fdc (patch)
tree3c937e1c39e039ed95d3b8ead3defc46cf60cc04 /usr.sbin
parenta21d905bae94bc358756957b1c26e2ec3f487e82 (diff)
Notes
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/memcontrol/Makefile4
-rw-r--r--usr.sbin/ppp/acf.h33
-rw-r--r--usr.sbin/ppp/proto.h48
-rw-r--r--usr.sbin/ppp/sync.h29
-rw-r--r--usr.sbin/wicontrol/Makefile9
5 files changed, 0 insertions, 123 deletions
diff --git a/usr.sbin/memcontrol/Makefile b/usr.sbin/memcontrol/Makefile
deleted file mode 100644
index 3d8ffd7cbb66..000000000000
--- a/usr.sbin/memcontrol/Makefile
+++ /dev/null
@@ -1,4 +0,0 @@
-PROG= memcontrol
-NOMAN= yes
-
-.include <bsd.prog.mk>
diff --git a/usr.sbin/ppp/acf.h b/usr.sbin/ppp/acf.h
deleted file mode 100644
index ed2d2fe93aa3..000000000000
--- a/usr.sbin/ppp/acf.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*-
- * Copyright (c) 1999 Brian Somers <brian@Awfulhak.org>
- * 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.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
- *
- * $Id:$
- */
-
-struct lcp;
-
-extern int acf_WrapperOctets(struct lcp *, u_short);
-
-extern struct layer acflayer;
diff --git a/usr.sbin/ppp/proto.h b/usr.sbin/ppp/proto.h
deleted file mode 100644
index d98241127284..000000000000
--- a/usr.sbin/ppp/proto.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
- *
- * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
- *
- * Redistribution and use in source and binary forms are permitted
- * provided that the above copyright notice and this paragraph are
- * duplicated in all such forms and that any documentation,
- * advertising materials, and other materials related to such
- * distribution and use acknowledge that the software was developed
- * by the Internet Initiative Japan. The name of the
- * IIJ may not be used to endorse or promote products derived
- * from this software without specific prior written permission.
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- *
- * $Id:$
- */
-
-/*
- * Definition of protocol numbers
- */
-#define PROTO_IP 0x0021 /* IP */
-#define PROTO_VJUNCOMP 0x002f /* VJ Uncompressed */
-#define PROTO_VJCOMP 0x002d /* VJ Compressed */
-#define PROTO_MP 0x003d /* Multilink fragment */
-#define PROTO_ICOMPD 0x00fb /* Individual link compressed */
-#define PROTO_COMPD 0x00fd /* Compressed datagram */
-
-#define PROTO_COMPRESSIBLE(p) (((p) & 0xffe1) == 0x21)
-
-#define PROTO_IPCP 0x8021
-#define PROTO_ICCP 0x80fb
-#define PROTO_CCP 0x80fd
-
-#define PROTO_LCP 0xc021
-#define PROTO_PAP 0xc023
-#define PROTO_CBCP 0xc029
-#define PROTO_LQR 0xc025
-#define PROTO_CHAP 0xc223
-
-struct lcp;
-
-extern int proto_WrapperOctets(struct lcp *, u_short);
-struct mbuf *proto_Prepend(struct mbuf *, u_short, unsigned, int);
-
-extern struct layer protolayer;
diff --git a/usr.sbin/ppp/sync.h b/usr.sbin/ppp/sync.h
deleted file mode 100644
index 334555d5c152..000000000000
--- a/usr.sbin/ppp/sync.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*-
- * Copyright (c) 1999 Brian Somers <brian@Awfulhak.org>
- * 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.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
- *
- * $Id:$
- */
-
-extern struct layer synclayer;
diff --git a/usr.sbin/wicontrol/Makefile b/usr.sbin/wicontrol/Makefile
deleted file mode 100644
index 971f12cdfef6..000000000000
--- a/usr.sbin/wicontrol/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-# $Id: Makefile,v 1.2 1997/05/23 04:04:15 msmith Exp $
-PROG= wicontrol
-SRCS= wicontrol.c
-
-CFLAGS+= -Wall
-
-MAN8= wicontrol.8
-
-.include <bsd.prog.mk>