diff --git a/src/detect.c b/src/detect.c index 537ecfa41b..424d474950 100644 --- a/src/detect.c +++ b/src/detect.c @@ -29,7 +29,6 @@ #include "decode.h" #include "packet.h" #include "flow.h" -#include "flow-bindgen.h" #include "stream-tcp.h" #include "app-layer.h" #include "app-layer-parser.h" diff --git a/src/flow.c b/src/flow.c index 5e672d739f..7697ec1de6 100644 --- a/src/flow.c +++ b/src/flow.c @@ -36,7 +36,6 @@ #include "util-time.h" #include "flow.h" -#include "flow-bindgen.h" #include "flow-queue.h" #include "flow-hash.h" #include "flow-util.h" diff --git a/src/flow.h b/src/flow.h index f3e7db8ce5..4761e6e5fa 100644 --- a/src/flow.h +++ b/src/flow.h @@ -35,6 +35,7 @@ typedef struct SCFlowStorageId SCFlowStorageId; #include "util-optimize.h" #include "util-validate.h" #include "app-layer-protos.h" +#include "flow-bindgen.h" /* Part of the flow structure, so we declare it here. * The actual declaration is in app-layer-parser.c */ diff --git a/src/output-json-alert.c b/src/output-json-alert.c index 1e4ec6f4c6..068f61fb9c 100644 --- a/src/output-json-alert.c +++ b/src/output-json-alert.c @@ -28,7 +28,6 @@ #include "packet.h" #include "detect.h" #include "flow.h" -#include "flow-bindgen.h" #include "conf.h" #include "stream.h" diff --git a/src/output-json-email-common.c b/src/output-json-email-common.c index e4a1b21d04..2130f55cf4 100644 --- a/src/output-json-email-common.c +++ b/src/output-json-email-common.c @@ -51,7 +51,7 @@ #include "output-json.h" #include "output-json-email-common.h" -#include "flow-bindgen.h" +#include "flow.h" #define LOG_EMAIL_DEFAULT 0 #define LOG_EMAIL_EXTENDED (1<<0) diff --git a/src/output-json-file.c b/src/output-json-file.c index 3227a86c9d..78a9e8fc66 100644 --- a/src/output-json-file.c +++ b/src/output-json-file.c @@ -66,7 +66,7 @@ #include "app-layer-htp-xff.h" #include "util-memcmp.h" #include "stream-tcp-reassemble.h" -#include "flow-bindgen.h" +#include "flow.h" typedef struct OutputFileCtx_ { uint32_t file_cnt;