From 0bad15d227cb2951d7c3cf48029399451c29eb73 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Wed, 2 Mar 2005 16:02:54 +0000 Subject: [PATCH] Be sure to process SDP if we already have an owner (bug #3701) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5118 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 83edfca8c0..5eb4cd8e0d 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -8001,6 +8001,16 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc p->pendinginvite = seqno; copy_request(&p->initreq, req); check_via(p, req); + if (p->owner) { + /* Handle SDP here if we already have an owner */ + if (!ast_strlen_zero(get_header(req, "Content-Type"))) { + if (process_sdp(p, req)) + return -1; + } else { + p->jointcapability = p->capability; + ast_log(LOG_DEBUG, "Hm.... No sdp for the moment\n"); + } + } } else if (debug) ast_verbose("Ignoring this request\n"); if (!p->lastinvite && !ignore && !p->owner) {