From 0e12de81da807718fb640b50d985d50c011bce54 Mon Sep 17 00:00:00 2001 From: Veeting Rooms <95159055+veeting@users.noreply.github.com> Date: Tue, 29 Aug 2023 09:40:31 +0200 Subject: [PATCH] When label is larger than 64, label is truncated and new context will never match (#3265) --- src/sctp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sctp.h b/src/sctp.h index 8a0f08b5aa..1eaf756625 100644 --- a/src/sctp.h +++ b/src/sctp.h @@ -81,7 +81,7 @@ typedef struct janus_sctp_channel { /*! \brief SCTP channel ID */ uint32_t id; /*! \brief SCTP channel label */ - char label[64]; + char label[128]; /*! \brief SCTP protocol */ char protocol[64]; /*! \brief Value of the PR-SCTP policy (http://tools.ietf.org/html/rfc6458) */