mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-28 00:10:25 -07:00
Merged revisions 111021 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r111021 | file | 2008-03-26 16:05:42 -0300 (Wed, 26 Mar 2008) | 12 lines Merged revisions 111020 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r111020 | file | 2008-03-26 16:04:35 -0300 (Wed, 26 Mar 2008) | 4 lines If we are requested to authenticate a reinvite make sure that it contains T38 SDP if need be. (closes issue #11995) Reported by: fall ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@111023 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+1
-1
@@ -8754,7 +8754,7 @@ static int transmit_invite(struct sip_pvt *p, int sipmethod, int sdp, int init)
|
||||
ast_channel_unlock(chan);
|
||||
}
|
||||
if (sdp) {
|
||||
if (p->udptl && p->t38.state == T38_LOCAL_DIRECT) {
|
||||
if (p->udptl && (p->t38.state == T38_LOCAL_DIRECT || p->t38.state == T38_LOCAL_REINVITE)) {
|
||||
ast_udptl_offered_from_local(p->udptl, 1);
|
||||
ast_debug(1, "T38 is in state %d on channel %s\n", p->t38.state, p->owner ? p->owner->name : "<none>");
|
||||
add_t38_sdp(&req, p);
|
||||
|
||||
Reference in New Issue
Block a user