forked from Mirrors/freeswitch
fix this properly.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8167 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
170d5da4ee
commit
2fa02f3ab3
@ -1144,15 +1144,17 @@ switch_status_t config_sofia(int reload, char *profile_name)
|
||||
profile->sipip = switch_core_strdup(profile->pool, ip);
|
||||
} else if (!strcasecmp(var, "ext-sip-ip")) {
|
||||
char *ip = mod_sofia_globals.guess_ip;
|
||||
char stun_ip[50] = "";
|
||||
char *myip = stun_ip;
|
||||
|
||||
switch_copy_string(stun_ip, ip, sizeof(stun_ip));
|
||||
|
||||
if (!strcasecmp(val, "0.0.0.0")) {
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Invald IP 0.0.0.0 replaced with %s\n", mod_sofia_globals.guess_ip);
|
||||
} else if (!strcasecmp(val, "auto")) {
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Automatically using IP %s\n", mod_sofia_globals.guess_ip);
|
||||
} else {
|
||||
} else if (strcasecmp(val, "auto")) {
|
||||
switch_port_t port = 0;
|
||||
if (sofia_glue_ext_address_lookup(&ip, &port, val, profile->pool) == SWITCH_STATUS_SUCCESS) {
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "STUN lookup sucessful using %s:%d\n", ip, port);
|
||||
if (sofia_glue_ext_address_lookup(&myip, &port, val, profile->pool) == SWITCH_STATUS_SUCCESS) {
|
||||
ip = myip;
|
||||
} else {
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to get external ip.\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user