From: Jason Ish Date: Tue, 27 Aug 2024 21:27:15 +0000 (-0600) Subject: output-packet.h: include tm-threads.h and decode.h X-Git-Tag: suricata-8.0.0-beta1~924 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc89d35256a8f1d5f12a64ff6de84165addec929;p=thirdparty%2Fsuricata.git output-packet.h: include tm-threads.h and decode.h This allows the header to be used without including other headers this one depends on. Ticket: #7227 --- diff --git a/src/output-packet.h b/src/output-packet.h index ce11535f71..8371200713 100644 --- a/src/output-packet.h +++ b/src/output-packet.h @@ -26,6 +26,9 @@ #ifndef SURICATA_OUTPUT_PACKET_H #define SURICATA_OUTPUT_PACKET_H +#include "tm-threads.h" +#include "decode.h" + /** packet logger function pointer type */ typedef int (*PacketLogger)(ThreadVars *, void *thread_data, const Packet *);