output-eve: cleanup usage of output-eve-bindgen.h

As output-eve-bindgen.h exists to support bindgen, its odd to see
other Suricata C files using it. Instead Suricata C code should import
"output-eve.h", which itself includes "output-eve-bindgen.h", only
broken out to support the external tool bindgen.
pull/14806/head
Jason Ish 3 months ago committed by Victor Julien
parent 8ea103031c
commit 7bfb63363e

@ -54,4 +54,4 @@ typedef struct EveJsonTxLoggerRegistrationData {
int SCOutputEvePreRegisterLogger(EveJsonTxLoggerRegistrationData reg_data);
#endif /* ! SURICATA_OUTPUT_EVEN_BINDGEN_H */
#endif /* ! SURICATA_OUTPUT_EVE_BINDGEN_H */

@ -33,6 +33,7 @@
#include "suricata-common.h"
#include "rust.h"
#include "conf.h"
#include "output-eve-bindgen.h"
typedef uint32_t ThreadId;

@ -28,7 +28,7 @@
#include "util-buffer.h"
#include "util-logopenfile.h"
#include "output.h"
#include "output-eve-bindgen.h"
#include "output-eve.h"
#include "app-layer-htp-xff.h"

@ -39,7 +39,7 @@
#include "util-error.h"
#include "util-debug.h"
#include "output.h"
#include "output-eve-bindgen.h"
#include "output-eve.h"
#include "alert-fastlog.h"
#include "alert-debuglog.h"

@ -28,8 +28,7 @@
#include "app-layer-protos.h"
#include "app-layer-parser.h"
#include "detect-engine-register.h"
#include "output.h"
#include "output-eve-bindgen.h"
#include "output-eve.h"
#include <dlfcn.h>

Loading…
Cancel
Save