From 1533f0922991e5a0a3a3a45f5b26cd725a040ecb Mon Sep 17 00:00:00 2001 From: Victor Boivie Date: Mon, 30 May 2022 16:29:44 +0200 Subject: [PATCH] dcsctp: Add priority to dcsctp handover state Adding it as a separate CL to allow upstream code to support it. Bug: webrtc:5696 Change-Id: I817a09e1b1121e5baf88b9922f84a2de245e6cc2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/264447 Commit-Queue: Florent Castelli Auto-Submit: Victor Boivie Reviewed-by: Florent Castelli Cr-Commit-Position: refs/heads/main@{#37046} --- net/dcsctp/public/dcsctp_handover_state.h | 1 + 1 file changed, 1 insertion(+) diff --git a/net/dcsctp/public/dcsctp_handover_state.h b/net/dcsctp/public/dcsctp_handover_state.h index a58535d45f..36fc37ba89 100644 --- a/net/dcsctp/public/dcsctp_handover_state.h +++ b/net/dcsctp/public/dcsctp_handover_state.h @@ -48,6 +48,7 @@ struct DcSctpSocketHandoverState { uint32_t next_ssn = 0; uint32_t next_unordered_mid = 0; uint32_t next_ordered_mid = 0; + uint16_t priority = 0; }; struct Transmission { uint32_t next_tsn = 0;