diff options
author | 2012-07-08 07:58:09 +0000 | |
---|---|---|
committer | 2012-07-08 07:58:09 +0000 | |
commit | ab0a082ea6cc3719bc897ff6d06efa7c3826eda5 (patch) | |
tree | f02e228406e064f7f702e6da63a87ab4d538734e /sys/net/if_pflog.h | |
parent | add a test for the fixed --help (diff) | |
download | wireguard-openbsd-ab0a082ea6cc3719bc897ff6d06efa7c3826eda5.tar.xz wireguard-openbsd-ab0a082ea6cc3719bc897ff6d06efa7c3826eda5.zip |
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; |