mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-29 09:09:21 +00:00
Do not tread ACK event if call has been terminated
This commit is contained in:
parent
7fcaf449af
commit
c9f89e6aa3
1 changed files with 4 additions and 0 deletions
|
|
@ -1062,6 +1062,10 @@ static void handle_ack(Sal *sal, eXosip_event_t *ev){
|
|||
ms_warning("ack for non-existing call !");
|
||||
return;
|
||||
}
|
||||
if (op->terminated) {
|
||||
ms_warning("ack for terminated call, ignoring");
|
||||
return;
|
||||
}
|
||||
|
||||
if (op->sdp_offering){
|
||||
sdp=eXosip_get_sdp_info(ev->ack);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue