mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 21:18:20 +00:00
Polishing the reference section of the manual.
Mostly resorting and renaming a few things.
This commit is contained in:
parent
6734260136
commit
0fe474e232
10 changed files with 26 additions and 34 deletions
|
@ -18,8 +18,6 @@ Bro Documentation
|
|||
scripts/index.rst
|
||||
components/index.rst
|
||||
|
||||
* `Notice Index <bro-noticeindex.html>`_ (TODO: Move to reference
|
||||
section, but can't figure out how to include it into toctree)
|
||||
* :ref:`General Index <genindex>`
|
||||
* :ref:`search`
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Built-in Types and Attributes
|
||||
=============================
|
||||
Types and Attributes
|
||||
====================
|
||||
|
||||
Types
|
||||
-----
|
||||
|
|
|
@ -7,13 +7,14 @@ Script Reference
|
|||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
builtins
|
||||
Built-In Functions (BIFs) <base/bif/index>
|
||||
scripts
|
||||
packages
|
||||
internal
|
||||
proto-analyzers
|
||||
file-analyzers
|
||||
notices
|
||||
builtins
|
||||
Built-in Functions (BIFs) <base/bif/index>
|
||||
internal
|
||||
scripts
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
.. This is a stub doc to which broxygen appends during the build process
|
||||
|
||||
========================
|
||||
Index of All Bro Scripts
|
||||
========================
|
||||
===============
|
||||
All Bro Scripts
|
||||
===============
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
|
|
@ -610,8 +610,10 @@ void CreateProtoAnalyzerDoc(const char* filename)
|
|||
{
|
||||
FILE* f = fopen(filename, "w");
|
||||
|
||||
fprintf(f, "Protocol Analyzer Reference\n");
|
||||
fprintf(f, "===========================\n\n");
|
||||
fprintf(f, "Protocol Analyzers\n");
|
||||
fprintf(f, "==================\n\n\n");
|
||||
fprintf(f, ".. contents::\n");
|
||||
fprintf(f, " :depth: 1\n\n");
|
||||
|
||||
WriteAnalyzerTagDefn(f, analyzer_mgr->GetTagEnumType(), "Analyzer");
|
||||
|
||||
|
@ -640,8 +642,10 @@ void CreateFileAnalyzerDoc(const char* filename)
|
|||
{
|
||||
FILE* f = fopen(filename, "w");
|
||||
|
||||
fprintf(f, "File Analyzer Reference\n");
|
||||
fprintf(f, "=======================\n\n");
|
||||
fprintf(f, "File Analyzers\n");
|
||||
fprintf(f, "==============\n\n");
|
||||
fprintf(f, ".. contents::\n");
|
||||
fprintf(f, " :depth: 1\n\n");
|
||||
|
||||
WriteAnalyzerTagDefn(f, file_mgr->GetTagEnumType(), "Files");
|
||||
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
##! such as general programming algorithms, string processing, math functions,
|
||||
##! introspection, type conversion, file/directory manipulation, packet filtering,
|
||||
##! inter-process communication and controlling protocol analyzer behavior.
|
||||
##!
|
||||
##! You'll find most of Bro's built-in functions that aren't protocol-specific in
|
||||
##! this file.
|
||||
|
||||
%%{ // C segment
|
||||
#include <math.h>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# functions and types for the input framework
|
||||
##! Internal functions and types used by the input framework.
|
||||
|
||||
module Input;
|
||||
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
# ===========================================================================
|
||||
#
|
||||
# Bloom Filter Functions
|
||||
#
|
||||
# ===========================================================================
|
||||
##! Functions to create and manipulate Bloom filters.
|
||||
|
||||
%%{
|
||||
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
# ===========================================================================
|
||||
#
|
||||
# HyperLogLog Functions
|
||||
#
|
||||
# ===========================================================================
|
||||
|
||||
##! Functions to create and manipulate probabilistic cardinality counters.
|
||||
|
||||
%%{
|
||||
#include "probabilistic/CardinalityCounter.h"
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
# ===========================================================================
|
||||
#
|
||||
# Top-K Functions
|
||||
#
|
||||
# ===========================================================================
|
||||
|
||||
##! Functions to probabilistically determine top-k elements.
|
||||
|
||||
%%{
|
||||
#include "probabilistic/Topk.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue