From 9d73afa400c5e129264e722ef11f9a843aac9d54 Mon Sep 17 00:00:00 2001 From: Johanna Amann Date: Wed, 23 Jul 2025 14:48:56 +0100 Subject: [PATCH] Only for perf test --- scripts/base/frameworks/analyzer/dpd.zeek | 4 ---- scripts/policy/frameworks/analyzer/deprecated-dpd-log.zeek | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/base/frameworks/analyzer/dpd.zeek b/scripts/base/frameworks/analyzer/dpd.zeek index 1b898a5868..bd2ae3982e 100644 --- a/scripts/base/frameworks/analyzer/dpd.zeek +++ b/scripts/base/frameworks/analyzer/dpd.zeek @@ -25,10 +25,6 @@ export { } 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 ## violation after the same analyzer had previously been confirmed. failed_analyzers: set[string] &default=set() &ordered; diff --git a/scripts/policy/frameworks/analyzer/deprecated-dpd-log.zeek b/scripts/policy/frameworks/analyzer/deprecated-dpd-log.zeek index 444b7573e0..f11890f38a 100644 --- a/scripts/policy/frameworks/analyzer/deprecated-dpd-log.zeek +++ b/scripts/policy/frameworks/analyzer/deprecated-dpd-log.zeek @@ -49,7 +49,7 @@ event analyzer_violation_info(atype: AllAnalyzers::Tag, info: AnalyzerViolationI local analyzer = Analyzer::name(atype); # If the service hasn't been confirmed yet, or already failed, # 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; local dpd: Info;