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