aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2023-12-08 05:53:23 +0100
committerneels <nhofmeyr@sysmocom.de>2023-12-13 01:52:22 +0000
commit82fad5dd468cb6fd921478b12653ad633e171ee7 (patch)
tree5186d6c6f61561b3b61e910dbb352b3bd137f1af
parentb80d93d57a62033c38fd14585d5d3aff30740b22 (diff)
sdp: allow more space for fmtpjolly/work
In osmo-mgw, we recently chose 256 for maximum fmtp length. Adjust to that here, too. Change-Id: Ib9b9608d8d8f7ce34596a950dbc480e8a72ebf97
-rw-r--r--include/osmocom/msc/sdp_msg.h2
1 files changed, 1 insertions, 1 deletions
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 {