Bump Spicy.

Includes a couple of updates for the QUIC analyzer.
This commit is contained in:
Robin Sommer 2024-04-15 11:48:38 +02:00
parent cfbe8de3e8
commit ed4aed40c1
No known key found for this signature in database
GPG key ID: D8187293B3FFE5D0
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit d38f31a95f93b1d9ea81fa01f0c92a72cf40f38c Subproject commit f4ff0d0f83d736d7c7f2e31d89337b166102ee78

View file

@ -272,7 +272,7 @@ public type LongHeaderPacket = unit {
}; };
# A QUIC Frame. # 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>($$); frame_type : uint8 &convert=cast<FrameType>($$);
# TODO: add other FrameTypes as well # TODO: add other FrameTypes as well
@ -415,7 +415,7 @@ type CryptoBuffer = unit() {
# #
# A UDP datagram contains one or more QUIC packets. # 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 decrypted_data: bytes;
var full_packet: bytes; var full_packet: bytes;
var start: iterator<stream>; var start: iterator<stream>;