On Tue, Apr 08, 2014 at 07:32:19PM +0900, Ken-ichirou MATSUZAWA wrote: > This patch adds a new configuration variable which is used to limit > conntrack event to connection of the mark. > > Signed-off-by: Ken-ichirou MATSUZAWA <chamas@xxxxxxxxxxxxx> > --- > configure.ac | 15 +++++++++ > input/flow/ulogd_inpflow_NFCT.c | 75 +++++++++++++++++++++++++++++++++++++++-- > 2 files changed, 88 insertions(+), 2 deletions(-) > > diff --git a/configure.ac b/configure.ac > index 522c345..7e5f5fc 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -58,6 +58,20 @@ AS_IF([test "x$enable_nfct" = "xyes"], [ > AC_DEFINE([BUILD_NFCT], [1], [Building nfct module]) > ]) > AM_CONDITIONAL([BUILD_NFCT], [test "x$enable_nfct" = "xyes"]) > +AS_IF([test "x$enable_nfct" = "xyes"], [ > + AC_MSG_CHECKING([for enable mark filter for event]) > + AC_CACHE_VAL(ac_cv_nfct_filter_mark, > + AC_TRY_COMPILE( > + [ #include <libnetfilter_conntrack/libnetfilter_conntrack.h>], > + [ int i = NFCT_FILTER_MARK; ], > + ac_cv_nfct_filter_mark=yes, > + ac_cv_nfct_filter_mark=no)) > + AC_MSG_RESULT($ac_cv_nfct_filter_mark) > + AS_IF([test "x$ac_cv_nfct_filter_mark" = "xyes"], [ > + AC_DEFINE([HAVE_NFCT_FILTER_MARK], [1], [Building nfct mark event filter]) > + ]) > +]) I don't find a good reason to add a compile time option for this. Eric? -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html