Check for existing transaction only if method is not ACK

This commit is contained in:
herlesupreeth
2021-01-08 11:31:49 +01:00
parent 06fd0b75a1
commit 8a978dc209

View File

@@ -497,11 +497,13 @@ route {
} }
# handle retransmissions # handle retransmissions
if(t_precheck_trans()) { if (!is_method("ACK")) {
t_check_trans(); if(t_precheck_trans()) {
exit; t_check_trans();
exit;
}
} }
t_check_trans(); #t_check_trans();
# Check for Re-Transmissions # Check for Re-Transmissions
t_check_trans(); t_check_trans();