Check for existing transaction only if method is not ACK
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user