From 69cf7ae188d12c5ee07fb065323f7aeff0822d15 Mon Sep 17 00:00:00 2001 From: gNPSI Team Date: Thu, 1 Jan 2026 22:08:04 -0800 Subject: [PATCH] Use int64 for sample_sequence_number. Change CongestionTelemetry.sample_sequence_number from int32 to int64 to prevent potential overflow. PiperOrigin-RevId: 851186482 --- proto/gnpsi/gnpsi.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/gnpsi/gnpsi.proto b/proto/gnpsi/gnpsi.proto index 3933994..bc26bcd 100644 --- a/proto/gnpsi/gnpsi.proto +++ b/proto/gnpsi/gnpsi.proto @@ -90,7 +90,7 @@ message CongestionTelemetry { int32 egress_port = 103; // Sequence number of the sample. - int32 sample_sequence_number = 104; + int64 sample_sequence_number = 104; } // gNPSI sample that can contain SFlow/NetFlow/IPFIX data.