提交 a1e5add7 authored 作者: Brian West's avatar Brian West

don't print misleading info here either if nat_type isn't set even if the add is a no_op

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13705 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 e44ef22b
......@@ -2213,7 +2213,7 @@ static int config(void)
} else if (!strcmp(var, "debug")) {
globals.debug = atoi(val);
} else if (!strcmp(var, "nat-map")) {
if (switch_true(val)) {
if (switch_true(val) && switch_core_get_variable("nat_type")) {
prefs.nat_map = 1;
}
} else if (!strcmp(var, "listen-port")) {
......@@ -2244,7 +2244,7 @@ static int config(void)
prefs.nat_map = 0;
}
if (prefs.nat_map && switch_check_network_list_ip(prefs.ip, "loopback.auto")) {
if (prefs.nat_map) {
prefs.nat_map = 0;
}
......@@ -2345,7 +2345,7 @@ SWITCH_MODULE_RUNTIME_FUNCTION(mod_event_socket_runtime)
close_socket(&listen_list.sock);
if (prefs.nat_map) {
if (prefs.nat_map && switch_core_get_variable("nat_type")) {
switch_nat_del_mapping(prefs.port, SWITCH_NAT_TCP);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论