Merge remote-tracking branch 'origin/topic/jsiwek/include-zeek-dir'

* origin/topic/jsiwek/include-zeek-dir:
  Add missing zeek/ to header includes
This commit is contained in:
Jon Siwek 2021-01-29 21:05:41 -08:00
commit 85b1cfd321
141 changed files with 146 additions and 139 deletions

View file

@ -1,4 +1,8 @@
4.1.0-dev.162 | 2021-01-29 21:05:41 -0800
* GH-1377: Add missing zeek/ to header includes (Jon Siwek, Corelight)
4.1.0-dev.158 | 2021-01-29 16:37:56 -0800 4.1.0-dev.158 | 2021-01-29 16:37:56 -0800
* Fix language.init-in-anon-function btest due to changes to log filter predicates (Tim Wojtulewicz, Corelight) * Fix language.init-in-anon-function btest due to changes to log filter predicates (Tim Wojtulewicz, Corelight)

View file

@ -493,6 +493,9 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/zeek-config.h.in
${CMAKE_CURRENT_BINARY_DIR}/zeek-config.h) ${CMAKE_CURRENT_BINARY_DIR}/zeek-config.h)
include_directories(${CMAKE_CURRENT_BINARY_DIR}) include_directories(${CMAKE_CURRENT_BINARY_DIR})
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/zeek-config.h DESTINATION include/zeek) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/zeek-config.h DESTINATION include/zeek)
execute_process(COMMAND "${CMAKE_COMMAND}" -E create_symlink
"."
"${CMAKE_CURRENT_BINARY_DIR}/zeek")
if ( CAF_ROOT ) if ( CAF_ROOT )
set(ZEEK_CONFIG_CAF_ROOT_DIR ${CAF_ROOT}) set(ZEEK_CONFIG_CAF_ROOT_DIR ${CAF_ROOT})

View file

@ -1 +1 @@
4.1.0-dev.158 4.1.0-dev.162

@ -1 +1 @@
Subproject commit a455278a0c571e99c26e1a06afa55ee07e665371 Subproject commit d356e4716ef22e6175fe5dd4f3c49b8c4c892214

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Attr.h" #include "zeek/Attr.h"
#include "zeek/Expr.h" #include "zeek/Expr.h"

View file

@ -1,4 +1,4 @@
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <math.h> #include <math.h>

View file

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <string> #include <string>
namespace zeek { class String; } namespace zeek { class String; }

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/IntrusivePtr.h" #include "zeek/IntrusivePtr.h"
ZEEK_FORWARD_DECLARE_NAMESPACED(Val, zeek); ZEEK_FORWARD_DECLARE_NAMESPACED(Val, zeek);

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/CCL.h" #include "zeek/CCL.h"
#include <algorithm> #include <algorithm>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/CompHash.h" #include "zeek/CompHash.h"
#include <cstring> #include <cstring>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Conn.h" #include "zeek/Conn.h"
#include <ctype.h> #include <ctype.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/DFA.h" #include "zeek/DFA.h"
#include "zeek/EquivClass.h" #include "zeek/EquivClass.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/DNS_Mgr.h" #include "zeek/DNS_Mgr.h"
#include <sys/types.h> #include <sys/types.h>

View file

@ -1,6 +1,6 @@
// Implementation of breakpoints. // Implementation of breakpoints.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/DbgBreakpoint.h" #include "zeek/DbgBreakpoint.h"

View file

@ -1,5 +1,5 @@
// Bro Debugger Help // Bro Debugger Help
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Debug.h" #include "zeek/Debug.h"

View file

@ -1,6 +1,6 @@
// Implementation of watches // Implementation of watches
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/DbgWatch.h" #include "zeek/DbgWatch.h"
#include "zeek/Debug.h" #include "zeek/Debug.h"

View file

@ -1,6 +1,6 @@
// Debugging support for Bro policy files. // Debugging support for Bro policy files.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Debug.h" #include "zeek/Debug.h"

View file

@ -1,7 +1,7 @@
// Support routines to help deal with Bro debugging commands and // Support routines to help deal with Bro debugging commands and
// implementation of most commands. // implementation of most commands.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/DebugCmds.h" #include "zeek/DebugCmds.h"
#include <sys/types.h> #include <sys/types.h>

View file

@ -5,7 +5,7 @@
#ifdef DEBUG #ifdef DEBUG
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <stdio.h> #include <stdio.h>
#include <string> #include <string>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Desc.h" #include "zeek/Desc.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Dict.h" #include "zeek/Dict.h"
#ifdef HAVE_MEMORY_H #ifdef HAVE_MEMORY_H

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Discard.h" #include "zeek/Discard.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/EquivClass.h" #include "zeek/EquivClass.h"
#include "zeek/CCL.h" #include "zeek/CCL.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Event.h" #include "zeek/Event.h"
#include "zeek/Desc.h" #include "zeek/Desc.h"

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <map> #include <map>
#include <memory> #include <memory>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Expr.h" #include "zeek/Expr.h"
#include "zeek/Event.h" #include "zeek/Event.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/File.h" #include "zeek/File.h"
#include <sys/types.h> #include <sys/types.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Frag.h" #include "zeek/Frag.h"
#include "zeek/Hash.h" #include "zeek/Hash.h"

View file

@ -1,7 +1,7 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Func.h" #include "zeek/Func.h"
#include <sys/types.h> #include <sys/types.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Hash.h" #include "zeek/Hash.h"
#include <highwayhash/sip_hash.h> #include <highwayhash/sip_hash.h>

View file

@ -1,7 +1,7 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/ID.h" #include "zeek/ID.h"
#include "zeek/Attr.h" #include "zeek/Attr.h"

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <sys/types.h> // for u_char #include <sys/types.h> // for u_char
#include <netinet/in.h> #include <netinet/in.h>

View file

@ -1,4 +1,4 @@
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/IntSet.h" #include "zeek/IntSet.h"
#ifdef HAVE_MEMORY_H #ifdef HAVE_MEMORY_H

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/NFA.h" #include "zeek/NFA.h"
#include <algorithm> #include <algorithm>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/NetVar.h" #include "zeek/NetVar.h"
#include "zeek/Var.h" #include "zeek/Var.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Obj.h" #include "zeek/Obj.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <limits.h> #include <limits.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Options.h" #include "zeek/Options.h"
#include "zeek/script_opt/ScriptOpt.h" #include "zeek/script_opt/ScriptOpt.h"

View file

@ -1,4 +1,4 @@
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/PolicyFile.h" #include "zeek/PolicyFile.h"
#include <sys/types.h> #include <sys/types.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/PriorityQueue.h" #include "zeek/PriorityQueue.h"
#include <stdio.h> #include <stdio.h>

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <math.h> #include <math.h>
#include <stdint.h> #include <stdint.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/RE.h" #include "zeek/RE.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <stdint.h> #include <stdint.h>
#define RT_MONTEN 6 /* Bytes used as Monte Carlo #define RT_MONTEN 6 /* Bytes used as Monte Carlo

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Reassem.h" #include "zeek/Reassem.h"
#include <algorithm> #include <algorithm>

View file

@ -2,7 +2,7 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
// //
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Reporter.h" #include "zeek/Reporter.h"
#include <unistd.h> #include <unistd.h>

View file

@ -1,4 +1,4 @@
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Rule.h" #include "zeek/Rule.h"
#include "zeek/RuleAction.h" #include "zeek/RuleAction.h"

View file

@ -1,4 +1,4 @@
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/RuleAction.h" #include "zeek/RuleAction.h"
#include <string> #include <string>

View file

@ -1,4 +1,4 @@
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/RuleCondition.h" #include "zeek/RuleCondition.h"
#include "zeek/RuleMatcher.h" #include "zeek/RuleMatcher.h"

View file

@ -1,5 +1,5 @@
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/RuleMatcher.h" #include "zeek/RuleMatcher.h"
#include <algorithm> #include <algorithm>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/RunState.h" #include "zeek/RunState.h"
#include <sys/types.h> #include <sys/types.h>

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <string> #include <string>
#include <optional> #include <optional>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Scope.h" #include "zeek/Scope.h"
#include "zeek/Desc.h" #include "zeek/Desc.h"

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <stdint.h> #include <stdint.h>
#include <string> #include <string>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Sessions.h" #include "zeek/Sessions.h"
#include <netinet/in.h> #include <netinet/in.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <ctype.h> #include <ctype.h>
#include <algorithm> #include <algorithm>

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <sys/types.h> #include <sys/types.h>
#include <sys/time.h> #include <sys/time.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Stmt.h" #include "zeek/Stmt.h"

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <stdint.h> #include <stdint.h>
#include <string> #include <string>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Timer.h" #include "zeek/Timer.h"
#include "zeek/util.h" #include "zeek/util.h"

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
ZEEK_FORWARD_DECLARE_NAMESPACED(TraversalCallback, zeek::detail); ZEEK_FORWARD_DECLARE_NAMESPACED(TraversalCallback, zeek::detail);

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <vector> #include <vector>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Type.h" #include "zeek/Type.h"
#include <string> #include <string>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Val.h" #include "zeek/Val.h"
#include <sys/types.h> #include <sys/types.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Var.h" #include "zeek/Var.h"
#include <memory> #include <memory>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/ZeekString.h" #include "zeek/ZeekString.h"
#include <ctype.h> #include <ctype.h>

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <sys/types.h> #include <sys/types.h>

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/Tag.h" #include "zeek/analyzer/Tag.h"
#include "zeek/plugin/Component.h" #include "zeek/plugin/Component.h"

View file

@ -3,7 +3,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Tag.h" #include "zeek/Tag.h"
ZEEK_FORWARD_DECLARE_NAMESPACED(EnumVal, zeek); ZEEK_FORWARD_DECLARE_NAMESPACED(EnumVal, zeek);

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/dce-rpc/DCE_RPC.h" #include "zeek/analyzer/protocol/dce-rpc/DCE_RPC.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/dns/DNS.h" #include "zeek/analyzer/protocol/dns/DNS.h"
#include <ctype.h> #include <ctype.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/finger/Finger.h" #include "zeek/analyzer/protocol/finger/Finger.h"
#include <ctype.h> #include <ctype.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/ftp/FTP.h" #include "zeek/analyzer/protocol/ftp/FTP.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/gnutella/Gnutella.h" #include "zeek/analyzer/protocol/gnutella/Gnutella.h"
#include <ctype.h> #include <ctype.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/http/HTTP.h" #include "zeek/analyzer/protocol/http/HTTP.h"
#include <ctype.h> #include <ctype.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/icmp/ICMP.h" #include "zeek/analyzer/protocol/icmp/ICMP.h"
#include <netinet/icmp6.h> #include <netinet/icmp6.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/ident/Ident.h" #include "zeek/analyzer/protocol/ident/Ident.h"
#include <ctype.h> #include <ctype.h>

View file

@ -12,7 +12,7 @@ namespace zeek::analyzer::imap { class IMAP_Analyzer; }
namespace binpac { namespace IMAP { class IMAP_Conn; } } namespace binpac { namespace IMAP { class IMAP_Conn; } }
using IMAPAnalyzer = zeek::analyzer::imap::IMAP_Analyzer*; using IMAPAnalyzer = zeek::analyzer::imap::IMAP_Analyzer*;
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/Reporter.h" #include "zeek/Reporter.h"
#include "zeek/analyzer/protocol/imap/IMAP.h" #include "zeek/analyzer/protocol/imap/IMAP.h"

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <mutex> #include <mutex>
#ifdef USE_KRB5 #ifdef USE_KRB5

View file

@ -6,7 +6,7 @@ namespace zeek::analyzer::krb { class KRB_Analyzer; }
namespace binpac { namespace KRB { class KRB_Conn; } } namespace binpac { namespace KRB { class KRB_Conn; } }
using KRBAnalyzer = zeek::analyzer::krb::KRB_Analyzer*; using KRBAnalyzer = zeek::analyzer::krb::KRB_Analyzer*;
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/krb/KRB.h" #include "zeek/analyzer/protocol/krb/KRB.h"
#include "analyzer/protocol/krb/types.bif.h" #include "analyzer/protocol/krb/types.bif.h"

View file

@ -6,7 +6,7 @@ namespace zeek::analyzer::krb_tcp { class KRB_Analyzer; }
namespace binpac { namespace KRB_TCP { class KRB_Conn; } } namespace binpac { namespace KRB_TCP { class KRB_Conn; } }
using KRBTCPAnalyzer = zeek::analyzer::krb_tcp::KRB_Analyzer*; using KRBTCPAnalyzer = zeek::analyzer::krb_tcp::KRB_Analyzer*;
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/krb/KRB_TCP.h" #include "zeek/analyzer/protocol/krb/KRB_TCP.h"
#include "analyzer/protocol/krb/types.bif.h" #include "analyzer/protocol/krb/types.bif.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/login/Login.h" #include "zeek/analyzer/protocol/login/Login.h"
#include <ctype.h> #include <ctype.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/login/NVT.h" #include "zeek/analyzer/protocol/login/NVT.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/login/RSH.h" #include "zeek/analyzer/protocol/login/RSH.h"
#include "zeek/NetVar.h" #include "zeek/NetVar.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/login/Rlogin.h" #include "zeek/analyzer/protocol/login/Rlogin.h"
#include "zeek/NetVar.h" #include "zeek/NetVar.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/login/Telnet.h" #include "zeek/analyzer/protocol/login/Telnet.h"
#include "zeek/analyzer/protocol/login/NVT.h" #include "zeek/analyzer/protocol/login/NVT.h"

View file

@ -1,4 +1,4 @@
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/mime/MIME.h" #include "zeek/analyzer/protocol/mime/MIME.h"
#include "zeek/NetVar.h" #include "zeek/NetVar.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/ncp/NCP.h" #include "zeek/analyzer/protocol/ncp/NCP.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/netbios/NetbiosSSN.h" #include "zeek/analyzer/protocol/netbios/NetbiosSSN.h"
#include <ctype.h> #include <ctype.h>

View file

@ -1,7 +1,7 @@
// This code contributed to Bro by Florian Schimandl, Hugh Dollman and // This code contributed to Bro by Florian Schimandl, Hugh Dollman and
// Robin Sommer. // Robin Sommer.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/pop3/POP3.h" #include "zeek/analyzer/protocol/pop3/POP3.h"
#include <vector> #include <vector>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/rpc/MOUNT.h" #include "zeek/analyzer/protocol/rpc/MOUNT.h"
#include <algorithm> #include <algorithm>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/rpc/NFS.h" #include "zeek/analyzer/protocol/rpc/NFS.h"
#include <utility> #include <utility>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/rpc/Portmap.h" #include "zeek/analyzer/protocol/rpc/Portmap.h"
#include "zeek/NetVar.h" #include "zeek/NetVar.h"

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/rpc/RPC.h" #include "zeek/analyzer/protocol/rpc/RPC.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/rpc/XDR.h" #include "zeek/analyzer/protocol/rpc/XDR.h"
#include <string.h> #include <string.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/smtp/SMTP.h" #include "zeek/analyzer/protocol/smtp/SMTP.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/stepping-stone/SteppingStone.h" #include "zeek/analyzer/protocol/stepping-stone/SteppingStone.h"
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/analyzer/protocol/udp/UDP.h" #include "zeek/analyzer/protocol/udp/UDP.h"
#include <algorithm> #include <algorithm>

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include <zlib.h> #include <zlib.h>

View file

@ -54,7 +54,7 @@
#define IN_GETOPT_LONG_C 1 #define IN_GETOPT_LONG_C 1
#include <zeek-config.h> #include <zeek/zeek-config.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <stdio.h> #include <stdio.h>

View file

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "zeek-config.h" #include "zeek/zeek-config.h"
#include "zeek/file_analysis/Tag.h" #include "zeek/file_analysis/Tag.h"
#include "zeek/plugin/Component.h" #include "zeek/plugin/Component.h"

Some files were not shown because too many files have changed in this diff Show more