From 097088085ef650c5c474a60c24cd9047d2ec5117 Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Sun, 12 Jan 2025 14:00:40 +0100 Subject: [PATCH] Fix incomplete includes in Spicy SSL analyer C++ code This appears to have been broken by feec451bcee7c459bc9a93e39ae18dc41515ac17. --- src/analyzer/protocol/ssl/spicy/support.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/analyzer/protocol/ssl/spicy/support.cc b/src/analyzer/protocol/ssl/spicy/support.cc index b12c9a65b7..f922b82be1 100644 --- a/src/analyzer/protocol/ssl/spicy/support.cc +++ b/src/analyzer/protocol/ssl/spicy/support.cc @@ -3,7 +3,9 @@ #include #include +#include "zeek/Conn.h" #include "zeek/Desc.h" +#include "zeek/analyzer/protocol/tcp/TCP.h" #include "zeek/file_analysis/Manager.h" #include "zeek/spicy/cookie.h" #include "zeek/spicy/runtime-support.h"