Add Supervisor BIF/event API skeleton

This commit is contained in:
Jon Siwek 2019-10-15 12:59:45 -07:00
parent 52f7647f25
commit e46cf88435
16 changed files with 232 additions and 12 deletions

View file

@ -717,12 +717,14 @@ void builtin_error(const char* msg, BroObj* arg)
#include "reporter.bif.func_h"
#include "strings.bif.func_h"
#include "option.bif.func_h"
#include "supervisor.bif.func_h"
#include "zeek.bif.func_def"
#include "stats.bif.func_def"
#include "reporter.bif.func_def"
#include "strings.bif.func_def"
#include "option.bif.func_def"
#include "supervisor.bif.func_def"
#include "__all__.bif.cc" // Autogenerated for compiling in the bif_target() code.
#include "__all__.bif.register.cc" // Autogenerated for compiling in the bif_target() code.
@ -750,6 +752,7 @@ void init_builtin_funcs()
#include "reporter.bif.func_init"
#include "strings.bif.func_init"
#include "option.bif.func_init"
#include "supervisor.bif.func_init"
did_builtin_init = true;
}