mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 03:28:19 +00:00
Only for perf test
This commit is contained in:
parent
84cbd3784f
commit
9d73afa400
2 changed files with 1 additions and 5 deletions
|
@ -25,10 +25,6 @@ export {
|
||||||
}
|
}
|
||||||
|
|
||||||
redef record connection += {
|
redef record connection += {
|
||||||
## The set of services (analyzers) for which Zeek has observed a
|
|
||||||
## violation after the same service had previously been confirmed.
|
|
||||||
service_violation: set[string] &default=set() &ordered &deprecated="Remove in v8.1. Consider using failed_analyzers instead";
|
|
||||||
|
|
||||||
## The set of prototol analyzers that were removed due to a protocol
|
## The set of prototol analyzers that were removed due to a protocol
|
||||||
## violation after the same analyzer had previously been confirmed.
|
## violation after the same analyzer had previously been confirmed.
|
||||||
failed_analyzers: set[string] &default=set() &ordered;
|
failed_analyzers: set[string] &default=set() &ordered;
|
||||||
|
|
|
@ -49,7 +49,7 @@ event analyzer_violation_info(atype: AllAnalyzers::Tag, info: AnalyzerViolationI
|
||||||
local analyzer = Analyzer::name(atype);
|
local analyzer = Analyzer::name(atype);
|
||||||
# If the service hasn't been confirmed yet, or already failed,
|
# If the service hasn't been confirmed yet, or already failed,
|
||||||
# don't generate a log message for the protocol violation.
|
# don't generate a log message for the protocol violation.
|
||||||
if ( analyzer !in c$service || analyzer in c$service_violation )
|
if ( analyzer !in c$service )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
local dpd: Info;
|
local dpd: Info;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue