mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Deprecate internal_handler(), replace with EventRegistry::Register()
Added a couple explicit event declarations that were missing: "net_done" and "dns_mapping_name_changed".
This commit is contained in:
parent
f1e8289caa
commit
78e3267c44
13 changed files with 72 additions and 48 deletions
|
@ -1870,9 +1870,6 @@ type gtp_delete_pdp_ctx_response_elements: record {
|
|||
@load base/frameworks/supervisor/api
|
||||
@load base/bif/supervisor.bif
|
||||
|
||||
global done_with_network = F;
|
||||
event net_done(t: time) { done_with_network = T; }
|
||||
|
||||
## Internal function.
|
||||
function add_interface(iold: string, inew: string): string
|
||||
{
|
||||
|
@ -5272,3 +5269,6 @@ const bits_per_uid: count = 96 &redef;
|
|||
## to generate installation-unique file IDs (the *id* field of :zeek:see:`fa_file`).
|
||||
const digest_salt = "Please change this value." &redef;
|
||||
|
||||
global done_with_network = F;
|
||||
event net_done(t: time)
|
||||
{ done_with_network = T; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue