From 82fad5dd468cb6fd921478b12653ad633e171ee7 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Fri, 8 Dec 2023 05:53:23 +0100 Subject: sdp: allow more space for fmtp In osmo-mgw, we recently chose 256 for maximum fmtp length. Adjust to that here, too. Change-Id: Ib9b9608d8d8f7ce34596a950dbc480e8a72ebf97 --- include/osmocom/msc/sdp_msg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osmocom/msc/sdp_msg.h b/include/osmocom/msc/sdp_msg.h index e62f22b0d..724440cdd 100644 --- a/include/osmocom/msc/sdp_msg.h +++ b/include/osmocom/msc/sdp_msg.h @@ -25,7 +25,7 @@ struct sdp_audio_codec { /* Like "GSM", "AMR", "EFR", ... */ char subtype_name[16]; unsigned int rate; - char fmtp[64]; + char fmtp[256]; }; struct sdp_audio_codecs { -- cgit v1.2.3