aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-03-29 20:58:03 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-03-29 20:58:03 +0000
commitdfdd9ce19d830fdfeda7117457acb1b322993f33 (patch)
tree563c944af76a809a87a23b2067493d3d94acaf43 /epan
parent80e9643f2f6b17704aa9a34cc23d8cde9255a75d (diff)
From Martin Mathieson:
- bump up SDP_MAX_PAYLOAD_TYPES to 20 (I have an mgcp capture where a media gateway responded with 12 media types, resulting in a crash). Probably more care needs to be taken while parsing the list of media types though... svn path=/trunk/; revision=13973
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-sdp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sdp.c b/epan/dissectors/packet-sdp.c
index f9cacdb048..62448a2685 100644
--- a/epan/dissectors/packet-sdp.c
+++ b/epan/dissectors/packet-sdp.c
@@ -163,7 +163,7 @@ static int ett_sdp_media_attribute = -1;
#define SDP_MAX_RTP_CHANNELS 4
-#define SDP_MAX_RTP_PAYLOAD_TYPES 10
+#define SDP_MAX_RTP_PAYLOAD_TYPES 20
typedef struct {
char *connection_address;