mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 18:18:19 +00:00
Merge remote-tracking branch 'origin/topic/timw/266-namespaces-part4'
* origin/topic/timw/266-namespaces-part4: (34 commits) Add missing namespace to usage of get_exe_path in fuzzer Rename methods in RunState to remove 'net' from their names Move zeek::net namespace to zeek::run_state namespace. Move ScannedFile class and associated globals into ScannedFile.h and out of Net.h and scan.l Rename types in ZeekList.h to be consistent with the style guide Move NetVar from zeek to zeek::detail namespace Remove PRI_PTR_COMPAT macros Fix indentation of namespaced aliases Move zeek-setup code into namespaces Move ZeekList types to zeek namespace Move __RegisterBif from zeek::detail::plugin to zeek::plugin::detail Remove unimplemented zeek_magic_path/bro_magic_path method Move all plugin classes into zeek::plugin::detail namespaces Rename BroList.h to ZeekList.h Move a few smaller files to zeek namespaces Tag the end of some namespaces for consistency Move a few of the zeek::util methods and variables to zeek::util::detail Move zeekygen code to zeek::zeekygen::detail namespace Mark zeek::util::pad_size as constexpr, which provides a small performance improvement Move everything in util.h to zeek::util namespace. ...
This commit is contained in:
commit
046eb58b75
537 changed files with 9219 additions and 6821 deletions
14
src/Conn.h
14
src/Conn.h
|
@ -204,7 +204,7 @@ public:
|
|||
// arguments used for the event are whatevever is provided in 'vl'.
|
||||
[[deprecated("Remove in v4.1. Use EnqueueEvent() instead.")]]
|
||||
void ConnectionEvent(zeek::EventHandlerPtr f, zeek::analyzer::Analyzer* analyzer,
|
||||
val_list vl);
|
||||
ValPList vl);
|
||||
|
||||
// Same as ConnectionEvent, except taking the event's argument list via a
|
||||
// pointer instead of by value. This function takes ownership of the
|
||||
|
@ -212,7 +212,7 @@ public:
|
|||
// of each of its elements.
|
||||
[[deprecated("Remove in v4.1. Use EnqueueEvent() instead.")]]
|
||||
void ConnectionEvent(zeek::EventHandlerPtr f, zeek::analyzer::Analyzer* analyzer,
|
||||
val_list* vl);
|
||||
ValPList* vl);
|
||||
|
||||
// Queues an event without first checking if there's any available event
|
||||
// handlers (or remote consumes). If it turns out there's actually nothing
|
||||
|
@ -224,7 +224,7 @@ public:
|
|||
// there's no handlers to consume them).
|
||||
[[deprecated("Remove in v4.1. Use EnqueueEvent() instead.")]]
|
||||
void ConnectionEventFast(zeek::EventHandlerPtr f, zeek::analyzer::Analyzer* analyzer,
|
||||
val_list vl);
|
||||
ValPList vl);
|
||||
|
||||
/**
|
||||
* Enqueues an event associated with this connection and given analyzer.
|
||||
|
@ -303,9 +303,9 @@ public:
|
|||
void DeleteTimer(double t);
|
||||
|
||||
// Sets the root of the analyzer tree as well as the primary PIA.
|
||||
void SetRootAnalyzer(zeek::analyzer::TransportLayerAnalyzer* analyzer, ::analyzer::pia::PIA* pia);
|
||||
void SetRootAnalyzer(zeek::analyzer::TransportLayerAnalyzer* analyzer, zeek::analyzer::pia::PIA* pia);
|
||||
zeek::analyzer::TransportLayerAnalyzer* GetRootAnalyzer() { return root_analyzer; }
|
||||
::analyzer::pia::PIA* GetPrimaryPIA() { return primary_PIA; }
|
||||
zeek::analyzer::pia::PIA* GetPrimaryPIA() { return primary_PIA; }
|
||||
|
||||
// Sets the transport protocol in use.
|
||||
void SetTransport(TransportProto arg_proto) { proto = arg_proto; }
|
||||
|
@ -346,7 +346,7 @@ protected:
|
|||
zeek::detail::ConnIDKey key;
|
||||
bool key_valid;
|
||||
|
||||
timer_list timers;
|
||||
TimerPList timers;
|
||||
|
||||
zeek::IPAddr orig_addr;
|
||||
zeek::IPAddr resp_addr;
|
||||
|
@ -382,7 +382,7 @@ protected:
|
|||
uint32_t hist_seen;
|
||||
|
||||
zeek::analyzer::TransportLayerAnalyzer* root_analyzer;
|
||||
::analyzer::pia::PIA* primary_PIA;
|
||||
zeek::analyzer::pia::PIA* primary_PIA;
|
||||
|
||||
zeek::UID uid; // Globally unique connection ID.
|
||||
zeek::detail::WeirdStateMap weird_state;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue