mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 13:38:19 +00:00
Improve documentation for connection_established event.
This commit is contained in:
parent
d8890ea009
commit
39d51ca99c
3 changed files with 9 additions and 3 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
2.3-376 | 2015-01-12 09:38:10 -0600
|
||||||
|
|
||||||
|
* Improve documentation for connection_established event. (Jon Siwek)
|
||||||
|
|
||||||
2.3-375 | 2015-01-08 13:10:09 -0600
|
2.3-375 | 2015-01-08 13:10:09 -0600
|
||||||
|
|
||||||
* Increase minimum required CMake version to 2.8. (Jon Siwek)
|
* Increase minimum required CMake version to 2.8. (Jon Siwek)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.3-375
|
2.3-376
|
||||||
|
|
|
@ -29,8 +29,10 @@ 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 when a SYN-ACK packet is seen in response to a SYN packet during
|
## Generated when seeing a SYN-ACK packet from the responder in a TCP
|
||||||
## a TCP handshake. The final ACK of the handshake in response to SYN-ACK may
|
## handshake. An associated SYN packet was not seen from the originator
|
||||||
|
## side if its state is not set to :bro:see:`TCP_ESTABLISHED`.
|
||||||
|
## 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
|
## 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
|
## :bro:type:`connection` to see if the originator sent an ACK, indicated by
|
||||||
## 'A' in the history string.
|
## 'A' in the history string.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue