mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Label session adapters in the output of zeek -NN
This commit is contained in:
parent
5433f2936e
commit
1f94b8f250
10 changed files with 18 additions and 24 deletions
|
@ -66,6 +66,10 @@ void Component::Describe(ODesc* d) const
|
|||
d->Add("Packet Dumper");
|
||||
break;
|
||||
|
||||
case component::SESSION_ADAPTER:
|
||||
d->Add("Session Adapter");
|
||||
break;
|
||||
|
||||
default:
|
||||
reporter->InternalWarning("unknown component type in plugin::Component::Describe");
|
||||
d->Add("<unknown component type>");
|
||||
|
|
|
@ -23,7 +23,8 @@ enum Type {
|
|||
FILE_ANALYZER, /// A file analyzer.
|
||||
IOSOURCE, /// An I/O source, excluding packet sources.
|
||||
PKTSRC, /// A packet source.
|
||||
PKTDUMPER /// A packet dumper.
|
||||
PKTDUMPER, /// A packet dumper.
|
||||
SESSION_ADAPTER, /// A session adapter analyzer.
|
||||
};
|
||||
|
||||
} // namespace component
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue