summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-09-08 11:02:32 +0100
committerHugo Landau <hlandau@openssl.org>2024-02-02 11:49:34 +0000
commit285a76bda02192818cedc2a7db8ff54bbd6a3586 (patch)
treea9274151cdabeafa40ec5adfe1258e198c3170bf /include
parent266a827d816c204d85ef04ce5d028a61d8e2b187 (diff)
QLOG: Wiring: QUIC QRX: Report the datagram ID from the DEMUX
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22037)
Diffstat (limited to 'include')
-rw-r--r--include/internal/quic_record_rx.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/internal/quic_record_rx.h b/include/internal/quic_record_rx.h
index 24c2bbc8ae..92ab77eaac 100644
--- a/include/internal/quic_record_rx.h
+++ b/include/internal/quic_record_rx.h
@@ -225,6 +225,12 @@ struct ossl_qrx_pkt_st {
* packets.
*/
uint64_t key_epoch;
+
+ /*
+ * This monotonically increases with each datagram received.
+ * It is for diagnostic use only.
+ */
+ uint64_t datagram_id;
};
/*