mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
Remove broxygen Sphinx integration
The broxygen-generated files now live in the git repo, have tests that check that they are up-to-date, and a script to re-generate them on-demand.
This commit is contained in:
parent
9e5e9d04b7
commit
7e9d48f532
549 changed files with 89909 additions and 100 deletions
58
doc/scripts/base/bif/plugins/Bro_HTTP.functions.bif.bro.rst
Normal file
58
doc/scripts/base/bif/plugins/Bro_HTTP.functions.bif.bro.rst
Normal file
|
@ -0,0 +1,58 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/bif/plugins/Bro_HTTP.functions.bif.bro
|
||||
===========================================
|
||||
.. bro:namespace:: GLOBAL
|
||||
|
||||
|
||||
:Namespace: GLOBAL
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
Functions
|
||||
#########
|
||||
===================================================== ===============================================================
|
||||
:bro:id:`skip_http_entity_data`: :bro:type:`function` Skips the data of the HTTP entity.
|
||||
:bro:id:`unescape_URI`: :bro:type:`function` Unescapes all characters in a URI (decode every ``%xx`` group).
|
||||
===================================================== ===============================================================
|
||||
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
Functions
|
||||
#########
|
||||
.. bro:id:: skip_http_entity_data
|
||||
|
||||
:Type: :bro:type:`function` (c: :bro:type:`connection`, is_orig: :bro:type:`bool`) : :bro:type:`any`
|
||||
|
||||
Skips the data of the HTTP entity.
|
||||
|
||||
|
||||
:c: The HTTP connection.
|
||||
|
||||
|
||||
:is_orig: If true, the client data is skipped, and the server data otherwise.
|
||||
|
||||
.. bro:see:: skip_smtp_data
|
||||
|
||||
.. bro:id:: unescape_URI
|
||||
|
||||
:Type: :bro:type:`function` (URI: :bro:type:`string`) : :bro:type:`string`
|
||||
|
||||
Unescapes all characters in a URI (decode every ``%xx`` group).
|
||||
|
||||
|
||||
:URI: The URI to unescape.
|
||||
|
||||
|
||||
:returns: The unescaped URI with all ``%xx`` groups decoded.
|
||||
|
||||
.. note::
|
||||
|
||||
Unescaping reserved characters may cause loss of information.
|
||||
:rfc:`2396`: A URI is always in an "escaped" form, since escaping or
|
||||
unescaping a completed URI might change its semantics. Normally, the
|
||||
only time escape encodings can safely be made is when the URI is
|
||||
being created from its component parts.
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue