summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-09 14:54:13 +0000
committerMark Spencer <markster@digium.com>2004-12-09 14:54:13 +0000
commit40fbe50662244a4bd9d92f3cea6dde15fa34476e (patch)
tree773bd58d66d35a2d9f2114da8e46bddcc4d7de41 /channels
parent6e800f4797b03df54fa929e0e97e98435b4ec7a3 (diff)
Update comment for fmtp 16, implement in RTP (bug #2999)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4409 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 4189b8bd7..f8ae0961a 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -3442,7 +3442,7 @@ static int add_sdp(struct sip_request *resp, struct sip_pvt *p)
snprintf(costr, sizeof(costr), "a=rtpmap:%d %s/8000\r\n", codec, ast_rtp_lookup_mime_subtype(0, x));
strncat(a, costr, sizeof(a) - strlen(a) - 1);
if (x == AST_RTP_DTMF) {
- /* Indicate we support DTMF... Not sure about 16, but MSN supports it so dang it, we will too... */
+ /* Indicate we support DTMF and FLASH... */
snprintf(costr, sizeof costr, "a=fmtp:%d 0-16\r\n",
codec);
strncat(a, costr, sizeof(a) - strlen(a) - 1);