mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-03 11:11:05 +00:00
Process SDP on 183 session progress (bug #930)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2301 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4922,9 +4922,13 @@ static void handle_response(struct sip_pvt *p, int resp, char *rest, struct sip_
|
|||||||
case 100:
|
case 100:
|
||||||
break;
|
break;
|
||||||
case 183:
|
case 183:
|
||||||
if (p->owner) {
|
if (!strcasecmp(msg, "INVITE")) {
|
||||||
/* Queue a progress frame */
|
if (strlen(get_header(req, "Content-Type")))
|
||||||
ast_queue_control(p->owner, AST_CONTROL_PROGRESS, 0);
|
process_sdp(p, req);
|
||||||
|
if (p->owner) {
|
||||||
|
/* Queue a progress frame */
|
||||||
|
ast_queue_control(p->owner, AST_CONTROL_PROGRESS, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 180:
|
case 180:
|
||||||
|
Reference in New Issue
Block a user