mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Remove deprecations tagged for v6.1
This commit is contained in:
parent
84d605602f
commit
4229af6820
27 changed files with 10 additions and 416 deletions
|
@ -27,7 +27,6 @@ const char* hook_name(HookType h)
|
|||
"QueueEvent",
|
||||
"DrainEvents",
|
||||
"UpdateNetworkTime",
|
||||
"BroObjDtor",
|
||||
"SetupAnalyzerTree",
|
||||
"LogInit",
|
||||
"LogWrite",
|
||||
|
@ -381,18 +380,6 @@ void Plugin::RequestEvent(EventHandlerPtr handler)
|
|||
plugin_mgr->RequestEvent(handler, this);
|
||||
}
|
||||
|
||||
void Plugin::RequestBroObjDtor(Obj* obj)
|
||||
{
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||
#endif
|
||||
plugin_mgr->RequestBroObjDtor(obj, this);
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
}
|
||||
|
||||
void Plugin::RequestObjDtor(Obj* obj)
|
||||
{
|
||||
plugin_mgr->RequestObjDtor(obj, this);
|
||||
|
@ -427,8 +414,6 @@ void Plugin::HookUpdateNetworkTime(double network_time) { }
|
|||
|
||||
void Plugin::HookSetupAnalyzerTree(Connection* conn) { }
|
||||
|
||||
void Plugin::HookBroObjDtor(void* obj) { }
|
||||
|
||||
void Plugin::HookObjDtor(void* obj) { }
|
||||
|
||||
void Plugin::HookLogInit(const std::string& writer, const std::string& instantiating_filter,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue