mirror of
https://github.com/OISF/suricata.git
synced 2026-06-11 01:42:01 -04:00
Simple libpcap example for live capture. Allows listening on multiple interfaces to show how multiple threads (workers) can be used. Ticket: #8096
9 lines
330 B
Makefile
9 lines
330 B
Makefile
bin_PROGRAMS = live
|
|
|
|
live_SOURCES = main.c
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
|
|
live_LDFLAGS = $(all_libraries) $(SECLDFLAGS)
|
|
live_LDADD = "-Wl,--start-group,$(top_builddir)/src/libsuricata_c.a,../../$(RUST_SURICATA_LIB),--end-group" $(RUST_LDADD)
|
|
live_DEPENDENCIES = $(top_builddir)/src/libsuricata_c.a ../../$(RUST_SURICATA_LIB)
|