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
if(t_precheck_trans()) {
t_check_trans();
exit;
if (!is_method("ACK")) {
if(t_precheck_trans()) {
t_check_trans();
exit;
}
}
t_check_trans();
#t_check_trans();
# Check for Re-Transmissions
t_check_trans();