diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2012-07-08 07:58:10 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2012-07-08 07:58:10 +0000 |
commit | efe550a3bad9afe2c436e595e901f30c1e550177 (patch) | |
tree | c756bcc35b13945c242d916f9ca5fbb6ef37e497 /sys/net/if_pflog.h | |
parent | cbc37ba55beb748020276bd133c1aa4e0246ac5c (diff) |
there was a limit on the number of pflog interfaces - 16. remove that.
mostly by dynamically allocating pflogifs instead of making that a static
array. ok claudio zinke
Diffstat (limited to 'sys/net/if_pflog.h')
-rw-r--r-- | sys/net/if_pflog.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/net/if_pflog.h b/sys/net/if_pflog.h index d3a81a7bbdb..949b20eaf80 100644 --- a/sys/net/if_pflog.h +++ b/sys/net/if_pflog.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pflog.h,v 1.22 2011/10/13 18:23:39 claudio Exp $ */ +/* $OpenBSD: if_pflog.h,v 1.23 2012/07/08 07:58:09 henning Exp $ */ /* * Copyright 2001 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -29,8 +29,6 @@ #include <net/pfvar.h> -#define PFLOGIFS_MAX 16 - struct pflog_softc { struct ifnet sc_if; /* the interface */ int sc_unit; |