├── Makefile.in ├── benchmark.sh ├── configure ├── configure.ac ├── dpkt └── benchmark ├── html-graphics-template.html ├── impacket └── benchmark ├── libcrafter └── benchmark.cpp ├── libpcap └── benchmark.cpp ├── libtins └── benchmark.cpp ├── pcap_generator └── generator.cpp ├── pcapplusplus └── benchmark.cpp ├── results_analyzer.py └── scapy └── benchmark /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/Makefile.in -------------------------------------------------------------------------------- /benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/benchmark.sh -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/configure.ac -------------------------------------------------------------------------------- /dpkt/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/dpkt/benchmark -------------------------------------------------------------------------------- /html-graphics-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/html-graphics-template.html -------------------------------------------------------------------------------- /impacket/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/impacket/benchmark -------------------------------------------------------------------------------- /libcrafter/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/libcrafter/benchmark.cpp -------------------------------------------------------------------------------- /libpcap/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/libpcap/benchmark.cpp -------------------------------------------------------------------------------- /libtins/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/libtins/benchmark.cpp -------------------------------------------------------------------------------- /pcap_generator/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/pcap_generator/generator.cpp -------------------------------------------------------------------------------- /pcapplusplus/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/pcapplusplus/benchmark.cpp -------------------------------------------------------------------------------- /results_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/results_analyzer.py -------------------------------------------------------------------------------- /scapy/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfontanini/packet-capture-benchmarks/HEAD/scapy/benchmark --------------------------------------------------------------------------------