mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
Move all Val classes to the zeek namespaces
This commit is contained in:
parent
ec9eff0bd5
commit
64332ca22c
265 changed files with 3154 additions and 3086 deletions
|
@ -7,10 +7,11 @@
|
|||
#include "IntrusivePtr.h"
|
||||
|
||||
class IP_Hdr;
|
||||
class Val;
|
||||
class Func;
|
||||
using FuncPtr = zeek::IntrusivePtr<Func>;
|
||||
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Val, zeek);
|
||||
|
||||
class Discarder {
|
||||
public:
|
||||
Discarder();
|
||||
|
@ -21,7 +22,7 @@ public:
|
|||
bool NextPacket(const IP_Hdr* ip, int len, int caplen);
|
||||
|
||||
protected:
|
||||
Val* BuildData(const u_char* data, int hdrlen, int len, int caplen);
|
||||
zeek::Val* BuildData(const u_char* data, int hdrlen, int len, int caplen);
|
||||
|
||||
FuncPtr check_ip;
|
||||
FuncPtr check_tcp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue