Add test case for binpac flowbuffer frame length parsing bug

This commit is contained in:
Jon Siwek 2020-03-19 22:09:23 -07:00
parent e2aeb70efc
commit 7e57f0788c
13 changed files with 265 additions and 1 deletions

View file

@ -0,0 +1,19 @@
project(Zeek-Plugin-Foo-FOO)
cmake_minimum_required(VERSION 2.6.3)
if ( NOT ZEEK_DIST )
message(FATAL_ERROR "ZEEK_DIST not set")
endif ()
set(CMAKE_MODULE_PATH ${ZEEK_DIST}/cmake)
include(ZeekPlugin)
zeek_plugin_begin(Foo FOO)
zeek_plugin_cc(src/Plugin.cc)
zeek_plugin_cc(src/FOO.cc)
zeek_plugin_bif(src/foo.bif)
zeek_plugin_pac(src/foo.pac)
zeek_plugin_end()