]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
When an RFC 2833 event is sent that we don't recognize, ignore it, don't queue a...
authorTilghman Lesher <tilghman@meg.abyt.es>
Wed, 3 Oct 2007 22:59:17 +0000 (22:59 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Wed, 3 Oct 2007 22:59:17 +0000 (22:59 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@84581 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/rtp.c

index 39f8c85ecd1db819ecd3e102359a34570345af71..47af8477b0078f73fc65092fe80bb8d24e5a805e 100644 (file)
@@ -737,6 +737,10 @@ static struct ast_frame *process_rfc2833(struct ast_rtp *rtp, unsigned char *dat
                resp = 'A' + (event - 12);
        } else if (event < 17) {        /* Event 16: Hook flash */
                resp = 'X';     
+       } else {
+               /* Not a supported event */
+               ast_log(LOG_DEBUG, "Ignoring RTP 2833 Event: %08x. Not a DTMF Digit.\n", event);
+               return &ast_null_frame;
        }
 
        if (ast_test_flag(rtp, FLAG_DTMF_COMPENSATE)) {