10 millionth time's a charm
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1076 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
91c07a6351
commit
6ba88701f5
|
@ -262,7 +262,7 @@ static switch_status exosip_on_init(switch_core_session *session)
|
|||
return SWITCH_STATUS_FALSE;
|
||||
}
|
||||
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Stun Success [%s]:[%d]\n", ip, sdp_port);
|
||||
} else if (!strcasecmp(globals.host, "guess")){
|
||||
} else if (strcasecmp(globals.host, "guess")){
|
||||
ip = globals.host;
|
||||
}
|
||||
|
||||
|
@ -1092,7 +1092,7 @@ static switch_status exosip_create_call(eXosip_event_t * event)
|
|||
}
|
||||
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Stun Success [%s]:[%d]\n", ip, sdp_port);
|
||||
switch_copy_string(tech_pvt->local_sdp_audio_ip, ip, sizeof(tech_pvt->local_sdp_audio_ip));
|
||||
} else if (!strcasecmp(globals.host, "guess")){
|
||||
} else if (strcasecmp(globals.host, "guess")){
|
||||
ip = globals.host;
|
||||
switch_copy_string(tech_pvt->local_sdp_audio_ip, ip, sizeof(tech_pvt->local_sdp_audio_ip));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue