mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Fix Zeekygen warning for QUIC::unrecognized_version event
Docs updates have been warning about being unable to locate that identifier, and it's because we've not defined it alongside the other QUIC events.
This commit is contained in:
parent
47dd834bdb
commit
3d88918071
1 changed files with 14 additions and 0 deletions
|
@ -80,3 +80,17 @@ global QUIC::zero_rtt_packet: event(c: connection, is_orig: bool, version: count
|
||||||
##
|
##
|
||||||
## .. note:: Packets with CONNECTION_CLOSE frames are usually encrypted after connection establishment and not visible to Zeek.
|
## .. note:: Packets with CONNECTION_CLOSE frames are usually encrypted after connection establishment and not visible to Zeek.
|
||||||
global QUIC::connection_close_frame: event(c: connection, is_orig: bool, version: count, dcid: string, scid: string, error_code: count, reason_phrase: string);
|
global QUIC::connection_close_frame: event(c: connection, is_orig: bool, version: count, dcid: string, scid: string, error_code: count, reason_phrase: string);
|
||||||
|
|
||||||
|
|
||||||
|
## Generated for an unrecognized QUIC version.
|
||||||
|
##
|
||||||
|
## c: The connection.
|
||||||
|
##
|
||||||
|
## is_orig: True if the packet is from the the connection's originator.
|
||||||
|
##
|
||||||
|
## version: The Version field.
|
||||||
|
##
|
||||||
|
## dcid: The Destination Connection ID field.
|
||||||
|
##
|
||||||
|
## scid: The Source Connection ID field.
|
||||||
|
global QUIC::unhandled_version: event(c: connection, is_orig: bool, version: count, dcid: string, scid: string);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue