MT#55831 fix failed relay of 200OK without SDP

fix failed relay of 200OK without SDP
(real ticket number: TT#9521)

Change-Id: I8932962961af364dab1df360afc4b02459d65ac0
mr11.2.1
Jozef Kenyeres 4 years ago committed by Donat Zenichev
parent d785557ddc
commit 534be90e08

@ -392,6 +392,9 @@ int AmOfferAnswer::onReplyOut(AmSipReply& reply)
if (reply.code == 183 && reply.cseq_method == SIP_METH_INVITE) {
// just ignore if no SDP is generated (required for B2B)
}
else if (reply.code == 200 && reply.cseq_method == SIP_METH_INVITE && state == OA_Completed) {
// just ignore if no SDP is generated (required for B2B)
}
else return -1;
}
else {

Loading…
Cancel
Save