deprecation messages for unused base script functions

This commit is contained in:
Vern Paxson 2022-05-27 14:36:30 -07:00
parent a120bcd7d7
commit 07cf5cb089
9 changed files with 17 additions and 16 deletions

View file

@ -150,7 +150,7 @@ event zeek_init() &priority=5
# Returns true if the given signature has already been triggered for the given
# [orig, resp] pair.
function has_signature_matched(id: string, orig: addr, resp: addr): bool &deprecated
function has_signature_matched(id: string, orig: addr, resp: addr): bool &deprecated="Remove in v6.1. Usage testing indicates this function is unused."
{
return [orig, resp] in vert_table ? id in vert_table[orig, resp] : F;
}