Do not send Rx AAR for PRACH with SDP

This commit is contained in:
herlesupreeth
2023-08-05 21:47:35 +02:00
parent b259d34a60
commit 7752d8efdd
2 changed files with 2 additions and 2 deletions

View File

@@ -186,7 +186,7 @@ onreply_route[MO_indialog_reply] {
route(NATMANAGE);
#!ifdef WITH_RX
if (t_check_status("183|200") && has_body("application/sdp")) {
if (t_check_status("183|200") && has_body("application/sdp") && !is_method("PRACK")) {
if (t_is_retr_async_reply()) {
xlog("L_DBG", "Dropping retransmitted reply which is still currently suspended\n");
drop();

View File

@@ -112,7 +112,7 @@ onreply_route[MT_indialog_reply] {
route(NATMANAGE);
#!ifdef WITH_RX
if (t_check_status("183|200") && has_body("application/sdp")) {
if (t_check_status("183|200") && has_body("application/sdp") && !is_method("PRACK")) {
if (t_is_retr_async_reply()) {
xlog("L_DBG", "Dropping retransmitted reply which is still currently suspended\n");
drop();