mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
Move Reporter to zeek namespace
This commit is contained in:
parent
7cedd94ee7
commit
bfab224d7c
132 changed files with 1010 additions and 987 deletions
|
@ -46,7 +46,7 @@ bool Discarder::NextPacket(const zeek::IP_Hdr* ip, int len, int caplen)
|
|||
discard_packet = check_ip->Invoke(&args)->AsBool();
|
||||
}
|
||||
|
||||
catch ( InterpreterException& e )
|
||||
catch ( zeek::InterpreterException& e )
|
||||
{
|
||||
discard_packet = false;
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ bool Discarder::NextPacket(const zeek::IP_Hdr* ip, int len, int caplen)
|
|||
discard_packet = check_tcp->Invoke(&args)->AsBool();
|
||||
}
|
||||
|
||||
catch ( InterpreterException& e )
|
||||
catch ( zeek::InterpreterException& e )
|
||||
{
|
||||
discard_packet = false;
|
||||
}
|
||||
|
@ -125,7 +125,7 @@ bool Discarder::NextPacket(const zeek::IP_Hdr* ip, int len, int caplen)
|
|||
discard_packet = check_udp->Invoke(&args)->AsBool();
|
||||
}
|
||||
|
||||
catch ( InterpreterException& e )
|
||||
catch ( zeek::InterpreterException& e )
|
||||
{
|
||||
discard_packet = false;
|
||||
}
|
||||
|
@ -145,7 +145,7 @@ bool Discarder::NextPacket(const zeek::IP_Hdr* ip, int len, int caplen)
|
|||
discard_packet = check_icmp->Invoke(&args)->AsBool();
|
||||
}
|
||||
|
||||
catch ( InterpreterException& e )
|
||||
catch ( zeek::InterpreterException& e )
|
||||
{
|
||||
discard_packet = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue