mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 11:08:20 +00:00
Rename NetSessions to SessionManager
This also includes: - Deprecating the NetSessions name. - Renaming the zeek::sessions global to zeek::session_mgr and deprecating the old name. - Renaming Sessions.{h,cc} to SessionManager.{h,cc}.
This commit is contained in:
parent
f7e3556a67
commit
db1d753b35
42 changed files with 148 additions and 155 deletions
|
@ -6,7 +6,7 @@
|
|||
#include "zeek/zeek-setup.h"
|
||||
|
||||
#include "zeek/Event.h"
|
||||
#include "zeek/Sessions.h"
|
||||
#include "zeek/SessionManager.h"
|
||||
#include "zeek/broker/Manager.h"
|
||||
#include "zeek/file_analysis/Manager.h"
|
||||
|
||||
|
@ -55,9 +55,9 @@ void fuzzer_cleanup_one_input()
|
|||
timer_mgr->Expire();
|
||||
|
||||
zeek::event_mgr.Drain();
|
||||
sessions->Drain();
|
||||
zeek::session_mgr->Drain();
|
||||
zeek::event_mgr.Drain();
|
||||
sessions->Clear();
|
||||
zeek::session_mgr->Clear();
|
||||
run_state::terminating = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue