|
@@ -554,6 +554,9 @@ route[RELAY] {
|
|
|
|
|
|
# Per SIP request initial checks
|
|
|
route[REQINIT] {
|
|
|
+ # no connect for sending replies
|
|
|
+ set_reply_no_connect();
|
|
|
+
|
|
|
#!ifdef WITH_ANTIFLOOD
|
|
|
# flood detection from same IP and traffic ban for a while
|
|
|
# be sure you exclude checking trusted peers, such as pstn gateways
|
|
@@ -821,6 +824,11 @@ route[NATMANAGE] {
|
|
|
set_contact_alias();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ if(isbflagset(FLB_NATB)) {
|
|
|
+ # message in a dialog involving NAT traversal - no connect
|
|
|
+ set_forward_no_connect();
|
|
|
+ }
|
|
|
#!endif
|
|
|
return;
|
|
|
}
|