Modernize plugin test.

Not using the `zeek/` include style could lead to path problems.
This commit is contained in:
Robin Sommer 2023-05-11 18:10:40 +02:00
parent fe8c2c69b5
commit d8f7329227
No known key found for this signature in database
GPG key ID: D8187293B3FFE5D0
2 changed files with 7 additions and 7 deletions

View file

@ -1,11 +1,11 @@
#include "Plugin.h"
#include <Conn.h>
#include <Desc.h>
#include <Event.h>
#include <Func.h>
#include <RunState.h>
#include <threading/Formatter.h>
#include <zeek/Conn.h>
#include <zeek/Desc.h>
#include <zeek/Event.h>
#include <zeek/Func.h>
#include <zeek/RunState.h>
#include <zeek/threading/Formatter.h>
#include <cstring>
#include <set>

View file

@ -1,7 +1,7 @@
#pragma once
#include <plugin/Plugin.h>
#include <zeek/plugin/Plugin.h>
namespace btest::plugin::Demo_Hooks
{