mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Documentation fixes.
This commit is contained in:
parent
5ab765b4b6
commit
074a0a9dce
3 changed files with 7 additions and 6 deletions
|
@ -219,7 +219,7 @@ type connection: record {
|
||||||
service: set[string];
|
service: set[string];
|
||||||
addl: string; ##< Deprecated.
|
addl: string; ##< Deprecated.
|
||||||
hot: count; ##< Deprecated.
|
hot: count; ##< Deprecated.
|
||||||
history: string; ##< State history of TCP connections. See *history* in :bro:see:`Conn::Info`.
|
history: string; ##< State history of connections. See *history* in :bro:see:`Conn::Info`.
|
||||||
## A globally unique connection identifier. For each connection, Bro creates an ID
|
## A globally unique connection identifier. For each connection, Bro creates an ID
|
||||||
## that is very likely unique across independent Bro runs. These IDs can thus be
|
## that is very likely unique across independent Bro runs. These IDs can thus be
|
||||||
## used to tag and locate information associated with that connection.
|
## used to tag and locate information associated with that connection.
|
||||||
|
|
|
@ -68,7 +68,7 @@ export {
|
||||||
missed_bytes: count &log &default=0;
|
missed_bytes: count &log &default=0;
|
||||||
|
|
||||||
## Records the state history of connections as a string of letters.
|
## Records the state history of connections as a string of letters.
|
||||||
## For TCP connections the meaning of those letters is:
|
## The meaning of those letters is:
|
||||||
##
|
##
|
||||||
## ====== ====================================================
|
## ====== ====================================================
|
||||||
## Letter Meaning
|
## Letter Meaning
|
||||||
|
|
|
@ -171,8 +171,11 @@ event new_connection_contents%(c: connection%);
|
||||||
## new_connection new_connection_contents partial_connection
|
## new_connection new_connection_contents partial_connection
|
||||||
event connection_attempt%(c: connection%);
|
event connection_attempt%(c: connection%);
|
||||||
|
|
||||||
## Generated for an established TCP connection. The event is raised when the
|
## Generated when a SYN-ACK packet is seen in response to SYN a packet during
|
||||||
## initial 3-way TCP handshake has successfully finished for a connection.
|
## a TCP handshake. The final ACK of the handshake in response to SYN-ACK may
|
||||||
|
## or may not occur later, one way to tell is to check the *history* field of
|
||||||
|
## :bro:type:`connection` to see if the originator sent an ACK, indicated by
|
||||||
|
## 'A' in the history string.
|
||||||
##
|
##
|
||||||
## c: The connection.
|
## c: The connection.
|
||||||
##
|
##
|
||||||
|
@ -335,8 +338,6 @@ event connection_SYN_packet%(c: connection, pkt: SYN_packet%);
|
||||||
##
|
##
|
||||||
## c: The connection.
|
## c: The connection.
|
||||||
##
|
##
|
||||||
## pkt: Information extracted from the SYN packet.
|
|
||||||
##
|
|
||||||
## .. bro:see:: connection_EOF connection_SYN_packet connection_attempt
|
## .. bro:see:: connection_EOF connection_SYN_packet connection_attempt
|
||||||
## connection_established connection_external connection_finished
|
## connection_established connection_external connection_finished
|
||||||
## connection_half_finished connection_partial_close connection_pending
|
## connection_half_finished connection_partial_close connection_pending
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue