mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Bump Spicy.
Includes a couple of updates for the QUIC analyzer.
This commit is contained in:
parent
cfbe8de3e8
commit
ed4aed40c1
2 changed files with 3 additions and 3 deletions
|
@ -1 +1 @@
|
|||
Subproject commit d38f31a95f93b1d9ea81fa01f0c92a72cf40f38c
|
||||
Subproject commit f4ff0d0f83d736d7c7f2e31d89337b166102ee78
|
|
@ -272,7 +272,7 @@ public type LongHeaderPacket = unit {
|
|||
};
|
||||
|
||||
# A QUIC Frame.
|
||||
public type Frame = unit(header: LongHeaderPacket, from_client: bool, inout crypto_sink: sink) {
|
||||
public type Frame = unit(header: LongHeaderPacket, from_client: bool, crypto_sink: sink&) {
|
||||
frame_type : uint8 &convert=cast<FrameType>($$);
|
||||
|
||||
# TODO: add other FrameTypes as well
|
||||
|
@ -415,7 +415,7 @@ type CryptoBuffer = unit() {
|
|||
#
|
||||
# A UDP datagram contains one or more QUIC packets.
|
||||
##############
|
||||
type Packet = unit(from_client: bool, inout context: ConnectionIDInfo&) {
|
||||
type Packet = unit(from_client: bool, context: ConnectionIDInfo&) {
|
||||
var decrypted_data: bytes;
|
||||
var full_packet: bytes;
|
||||
var start: iterator<stream>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue