From: Andrii Serbeniuk -X (aserbeni - SOFTSERVE INC at Cisco) Date: Mon, 8 Apr 2024 15:18:16 +0000 (+0000) Subject: Pull request #4270: packet_capture: include cstdint in a header file X-Git-Tag: 3.1.84.0~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70b811ca111f6df9d1353bda67e8383f69fcc5b0;p=thirdparty%2Fsnort3.git Pull request #4270: packet_capture: include cstdint in a header file Merge in SNORT/snort3 from ~ASERBENI/snort3:alpine_cstdint to master Squashed commit of the following: commit 2a7dfb7b1983eabf06dea5e96c1dd86bc115e60d Author: Plup Date: Tue Apr 2 13:55:02 2024 +0200 packet_capture: include cstdint in a header file This resolves build issues on Alpine 3.19.1. Thanks to Plup and Hauke Mehrtens for reporting this! --- diff --git a/src/network_inspectors/packet_capture/packet_capture.h b/src/network_inspectors/packet_capture/packet_capture.h index 2ccca1033..33f4f053e 100644 --- a/src/network_inspectors/packet_capture/packet_capture.h +++ b/src/network_inspectors/packet_capture/packet_capture.h @@ -20,6 +20,7 @@ #ifndef PACKET_CAPTURE_H #define PACKET_CAPTURE_H +#include #include void packet_capture_enable(const std::string&, const int16_t g = -1, const std::string& t = "");