diff options
author | Corubba Smith <corubba@gmx.de> | 2025-03-12 15:56:48 +0100 |
---|---|---|
committer | Florian Westphal <fw@strlen.de> | 2025-03-12 16:31:43 +0100 |
commit | 15b89e41a5365adf81a6f2b70fbd733f0343c91b (patch) | |
tree | 1a29ad60787554960f14eb34f80e1ddbd214218c /input/flow/ulogd_inpflow_NFCT.c | |
parent | 51d46956e78b0bc204209f2fbbd0f2ce8d366aa7 (diff) |
all: remove trivial configure hooks
These are now covered by the default implementation.
Signed-off-by: Corubba Smith <corubba@gmx.de>
Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'input/flow/ulogd_inpflow_NFCT.c')
-rw-r--r-- | input/flow/ulogd_inpflow_NFCT.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/input/flow/ulogd_inpflow_NFCT.c b/input/flow/ulogd_inpflow_NFCT.c index 5213cc3..93edb76 100644 --- a/input/flow/ulogd_inpflow_NFCT.c +++ b/input/flow/ulogd_inpflow_NFCT.c @@ -1049,18 +1049,6 @@ static void polling_timer_cb(struct ulogd_timer *t, void *data) ulogd_add_timer(&cpi->timer, pollint_ce(upi->config_kset).u.value); } -static int configure_nfct(struct ulogd_pluginstance *upi, - struct ulogd_pluginstance_stack *stack) -{ - int ret; - - ret = ulogd_parse_configfile(upi->id, upi->config_kset); - if (ret < 0) - return ret; - - return 0; -} - static void overrun_timeout(struct ulogd_timer *a, void *data) { int family = AF_UNSPEC; @@ -1577,7 +1565,6 @@ static struct ulogd_plugin nfct_plugin = { }, .config_kset = &nfct_kset, .interp = NULL, - .configure = &configure_nfct, .start = &constructor_nfct, .stop = &destructor_nfct, .signal = &signal_nfct, |