Add ipfilter (pseudo-) device.

This commit is contained in:
scottr 1997-01-13 23:34:04 +00:00
parent f6d7620b76
commit d186ff0991
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: GENERIC,v 1.51 1997/01/11 09:11:41 mikel Exp $
# $NetBSD: GENERIC,v 1.52 1997/01/13 23:34:07 scottr Exp $
#
# GENERIC
@ -101,3 +101,4 @@ pseudo-device ccd 2
pseudo-device ppp 2
pseudo-device loop
pseudo-device sl
#pseudo-device ipfilter

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.38 1996/12/28 23:22:07 pk Exp $ */
/* $NetBSD: conf.c,v 1.39 1997/01/13 23:34:04 scottr Exp $ */
/*
* Copyright (c) 1990 The Regents of the University of California.
@ -175,6 +175,7 @@ struct cdevsw cdevsw[] =
cdev_disk_init(NMD,md), /* 32: memory disk driver */
cdev_scanner_init(NSS,ss), /* 33: SCSI scanner */
cdev_uk_init(NUK,uk), /* 34: SCSI unknown */
cdev_ipf_init(NIPFILTER,ipl), /* 35: ip-filter device */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);