mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Fix various documentation/typos; remove a few superfluous things.
This commit is contained in:
parent
8e7ef001b3
commit
a5e1810aa8
17 changed files with 110 additions and 103 deletions
|
@ -70,10 +70,10 @@
|
|||
#define BRO_PLUGIN_VERSION(v) SetVersion(v)
|
||||
|
||||
/**
|
||||
* Adds scrip-level items defined in a \c *.bif file to what the plugin
|
||||
* Adds script-level items defined in a \c *.bif file to what the plugin
|
||||
* provides.
|
||||
*
|
||||
* @param file A string with the name of \c *.bif file. When loaded, the the
|
||||
* @param file A string with the name of \c *.bif file. When loaded, the
|
||||
* plugin will make all items defined in the file available to Bro's script
|
||||
* interpreter.
|
||||
*/
|
||||
|
@ -82,7 +82,7 @@
|
|||
AddBifInitFunction(&__bif_##file##_init);
|
||||
|
||||
/**
|
||||
* Defines a component implementating a protocol analyzer.
|
||||
* Defines a component implementing a protocol analyzer.
|
||||
*
|
||||
* @param tag A string with the analyzer's tag. This must be unique across
|
||||
* all loaded analyzers and will translate into a corresponding \c ANALYZER_*
|
||||
|
@ -95,11 +95,11 @@
|
|||
AddComponent(new ::analyzer::Component(tag, ::analyzer::cls::InstantiateAnalyzer));
|
||||
|
||||
/**
|
||||
* Defines a component implementating an protocol analyzer class that will
|
||||
* Defines a component implementing a protocol analyzer class that will
|
||||
* not be instantiated dynamically. This is for two use-cases: (1) abstract
|
||||
* analyzer base classes that aren't instantiated directly; and (2) analyzers
|
||||
* that are only instantiated explicitly by other Bro components, but not
|
||||
* dynmically by the manager based on their tag (e.g., the ZIP analyzer is
|
||||
* dynamically by the manager based on their tag (e.g., the ZIP analyzer is
|
||||
* attached by the HTTP analyzer when corresponding content is found).
|
||||
*
|
||||
* @param tag A string with the analyzer's tag. This must be unique across
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue