Eliminate need for and remove net_conf.h

This commit is contained in:
christos 1996-03-30 21:57:30 +00:00
parent 09ed6483fd
commit 7af5cc8190
3 changed files with 4 additions and 42 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: bpf.c,v 1.24 1996/02/13 21:59:53 christos Exp $ */
/* $NetBSD: bpf.c,v 1.25 1996/03/30 21:57:30 christos Exp $ */
/*
* Copyright (c) 1990, 1991, 1993
@ -51,6 +51,7 @@
#include <sys/user.h>
#include <sys/ioctl.h>
#include <sys/map.h>
#include <sys/conf.h>
#include <sys/file.h>
#if defined(sparc) && BSD < 199103
@ -65,7 +66,6 @@
#include <net/bpf.h>
#include <net/bpfdesc.h>
#include <net/net_conf.h>
#include <sys/errno.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_tun.c,v 1.22 1996/02/13 22:00:26 christos Exp $ */
/* $NetBSD: if_tun.c,v 1.23 1996/03/30 21:57:35 christos Exp $ */
/*
* Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
@ -30,6 +30,7 @@
#include <sys/select.h>
#include <sys/file.h>
#include <sys/signalvar.h>
#include <sys/conf.h>
#include <machine/cpu.h>
@ -57,7 +58,6 @@
#endif
#include <net/if_tun.h>
#include <net/net_conf.h>
#define TUNDEBUG if (tundebug) printf
int tundebug = 0;

View File

@ -1,38 +0,0 @@
/* $NetBSD: net_conf.h,v 1.1 1996/02/13 22:00:28 christos Exp $ */
/*
* Copyright (c) 1995 Christos Zoulas. 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 Christos Zoulas.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
*/
#include <sys/conf.h>
#include "bpfilter.h"
cdev_decl(bpf);
#include "tun.h"
cdev_decl(tun);