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 /output/pcap/ulogd_output_PCAP.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 'output/pcap/ulogd_output_PCAP.c')
-rw-r--r-- | output/pcap/ulogd_output_PCAP.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/output/pcap/ulogd_output_PCAP.c b/output/pcap/ulogd_output_PCAP.c index 474992e..ec29a9e 100644 --- a/output/pcap/ulogd_output_PCAP.c +++ b/output/pcap/ulogd_output_PCAP.c @@ -257,12 +257,6 @@ static void signal_pcap(struct ulogd_pluginstance *upi, int signal) } } -static int configure_pcap(struct ulogd_pluginstance *upi, - struct ulogd_pluginstance_stack *stack) -{ - return ulogd_parse_configfile(upi->id, upi->config_kset); -} - static int start_pcap(struct ulogd_pluginstance *upi) { return append_create_outfile(upi); @@ -291,7 +285,6 @@ static struct ulogd_plugin pcap_plugin = { .config_kset = &pcap_kset, .priv_size = sizeof(struct pcap_instance), - .configure = &configure_pcap, .start = &start_pcap, .stop = &stop_pcap, .signal = &signal_pcap, |