├── .gitignore ├── COPYING ├── ChangeLog ├── Makefile ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── api ├── Makefile.am ├── Makefile.in ├── daq.h ├── daq_api.h ├── daq_base.c ├── daq_common.h └── daq_mod_ops.c ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── daq.dsp ├── depcomp ├── install-sh ├── ltmain.sh ├── m4 ├── ax_cflags_gcc_option.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 └── sf.m4 ├── missing ├── os-daq-modules ├── Makefile.am ├── Makefile.in ├── daq-modules-config.in ├── daq_afpacket.c ├── daq_dump.c ├── daq_ipfw.c ├── daq_ipq.c ├── daq_netmap.c ├── daq_nfq.c ├── daq_pcap.c ├── daq_static_modules.c └── daq_static_modules.h ├── packaging └── rpm │ ├── Makefile │ └── daq.spec └── sfbpf ├── IP6_misc.h ├── Makefile.am ├── Makefile.in ├── arcnet.h ├── atmuni31.h ├── bittypes.h ├── ethertype.h ├── gencode.h ├── grammar.y ├── ieee80211.h ├── ipnet.h ├── llc.h ├── namedb.h ├── nlpid.h ├── ppp.h ├── runlex.sh ├── scanner.l ├── sf-redefines.h ├── sf_bpf_filter.c ├── sf_bpf_printer.c ├── sf_gencode.c ├── sf_nametoaddr.c ├── sf_optimize.c ├── sfbpf-int.c ├── sfbpf-int.h ├── sfbpf.h ├── sfbpf_dlt.h ├── sll.h ├── sunatmpos.h └── win32-stdinc.h /.gitignore: -------------------------------------------------------------------------------- 1 | #RPM 2 | pkgs 3 | SOURCES 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/README -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /api/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/api/Makefile.am -------------------------------------------------------------------------------- /api/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/api/Makefile.in -------------------------------------------------------------------------------- /api/daq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/api/daq.h -------------------------------------------------------------------------------- /api/daq_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/api/daq_api.h -------------------------------------------------------------------------------- /api/daq_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/api/daq_base.c -------------------------------------------------------------------------------- /api/daq_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/api/daq_common.h -------------------------------------------------------------------------------- /api/daq_mod_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/api/daq_mod_ops.c -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/configure.ac -------------------------------------------------------------------------------- /daq.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/daq.dsp -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/install-sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/ltmain.sh -------------------------------------------------------------------------------- /m4/ax_cflags_gcc_option.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/m4/ax_cflags_gcc_option.m4 -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /m4/sf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/m4/sf.m4 -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/missing -------------------------------------------------------------------------------- /os-daq-modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/Makefile.am -------------------------------------------------------------------------------- /os-daq-modules/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/Makefile.in -------------------------------------------------------------------------------- /os-daq-modules/daq-modules-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq-modules-config.in -------------------------------------------------------------------------------- /os-daq-modules/daq_afpacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_afpacket.c -------------------------------------------------------------------------------- /os-daq-modules/daq_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_dump.c -------------------------------------------------------------------------------- /os-daq-modules/daq_ipfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_ipfw.c -------------------------------------------------------------------------------- /os-daq-modules/daq_ipq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_ipq.c -------------------------------------------------------------------------------- /os-daq-modules/daq_netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_netmap.c -------------------------------------------------------------------------------- /os-daq-modules/daq_nfq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_nfq.c -------------------------------------------------------------------------------- /os-daq-modules/daq_pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_pcap.c -------------------------------------------------------------------------------- /os-daq-modules/daq_static_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_static_modules.c -------------------------------------------------------------------------------- /os-daq-modules/daq_static_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/os-daq-modules/daq_static_modules.h -------------------------------------------------------------------------------- /packaging/rpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/packaging/rpm/Makefile -------------------------------------------------------------------------------- /packaging/rpm/daq.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/packaging/rpm/daq.spec -------------------------------------------------------------------------------- /sfbpf/IP6_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/IP6_misc.h -------------------------------------------------------------------------------- /sfbpf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/Makefile.am -------------------------------------------------------------------------------- /sfbpf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/Makefile.in -------------------------------------------------------------------------------- /sfbpf/arcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/arcnet.h -------------------------------------------------------------------------------- /sfbpf/atmuni31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/atmuni31.h -------------------------------------------------------------------------------- /sfbpf/bittypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/bittypes.h -------------------------------------------------------------------------------- /sfbpf/ethertype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/ethertype.h -------------------------------------------------------------------------------- /sfbpf/gencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/gencode.h -------------------------------------------------------------------------------- /sfbpf/grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/grammar.y -------------------------------------------------------------------------------- /sfbpf/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/ieee80211.h -------------------------------------------------------------------------------- /sfbpf/ipnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/ipnet.h -------------------------------------------------------------------------------- /sfbpf/llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/llc.h -------------------------------------------------------------------------------- /sfbpf/namedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/namedb.h -------------------------------------------------------------------------------- /sfbpf/nlpid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/nlpid.h -------------------------------------------------------------------------------- /sfbpf/ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/ppp.h -------------------------------------------------------------------------------- /sfbpf/runlex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/runlex.sh -------------------------------------------------------------------------------- /sfbpf/scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/scanner.l -------------------------------------------------------------------------------- /sfbpf/sf-redefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sf-redefines.h -------------------------------------------------------------------------------- /sfbpf/sf_bpf_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sf_bpf_filter.c -------------------------------------------------------------------------------- /sfbpf/sf_bpf_printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sf_bpf_printer.c -------------------------------------------------------------------------------- /sfbpf/sf_gencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sf_gencode.c -------------------------------------------------------------------------------- /sfbpf/sf_nametoaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sf_nametoaddr.c -------------------------------------------------------------------------------- /sfbpf/sf_optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sf_optimize.c -------------------------------------------------------------------------------- /sfbpf/sfbpf-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sfbpf-int.c -------------------------------------------------------------------------------- /sfbpf/sfbpf-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sfbpf-int.h -------------------------------------------------------------------------------- /sfbpf/sfbpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sfbpf.h -------------------------------------------------------------------------------- /sfbpf/sfbpf_dlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sfbpf_dlt.h -------------------------------------------------------------------------------- /sfbpf/sll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sll.h -------------------------------------------------------------------------------- /sfbpf/sunatmpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/sunatmpos.h -------------------------------------------------------------------------------- /sfbpf/win32-stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redBorder/daq/HEAD/sfbpf/win32-stdinc.h --------------------------------------------------------------------------------