Remove headers not needed.

Pointed out by: phk
This commit is contained in:
Alfred Perlstein 2000-10-07 23:15:17 +00:00
parent e16befd944
commit abbfaeb87b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66798
2 changed files with 0 additions and 26 deletions

View File

@ -30,22 +30,8 @@
#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/systm.h>
#include <sys/sysproto.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/unistd.h>
#include <sys/file.h>
#include <sys/fcntl.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/stat.h>
#include <sys/mbuf.h>
#include <sys/resource.h>
#include <sys/sysent.h>
#include <sys/resourcevar.h>
/* accept filter that holds a socket until data arrives */

View File

@ -30,23 +30,11 @@
#define ACCEPT_FILTER_MOD
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sysproto.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/unistd.h>
#include <sys/file.h>
#include <sys/fcntl.h>
#include <sys/protosw.h>
#include <sys/sysctl.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/stat.h>
#include <sys/mbuf.h>
#include <sys/resource.h>
#include <sys/sysent.h>
#include <sys/resourcevar.h>
/* check for GET/HEAD */
static void sohashttpget(struct socket *so, void *arg, int waitflag);