mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-05 22:32:32 -07:00
Fix ordering of output for a ChannelUpdate manager event.
(closes issue #14497) Reported by: vinsik Patches: chan_update_fix-chan_sip.c.diff uploaded by vinsik (license 623) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@177005 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+1
-1
@@ -16656,7 +16656,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, char *rest, stru
|
||||
if (sip_cfg.callevents)
|
||||
manager_event(EVENT_FLAG_SYSTEM, "ChannelUpdate",
|
||||
"Channel: %s\r\nChanneltype: %s\r\nUniqueid: %s\r\nSIPcallid: %s\r\nSIPfullcontact: %s\r\nPeername: %s\r\n",
|
||||
p->owner->name, p->owner->uniqueid, "SIP", p->callid, p->fullcontact, p->peername);
|
||||
p->owner->name, "SIP", p->owner->uniqueid, p->callid, p->fullcontact, p->peername);
|
||||
} else { /* RE-invite */
|
||||
ast_queue_frame(p->owner, &ast_null_frame);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user