use portable switch_inet_ntop

This commit is contained in:
Anthony Minessale 2014-02-12 03:31:21 +05:00
parent 81863e44b6
commit 73acee7146
2 changed files with 2 additions and 2 deletions

View File

@ -530,7 +530,7 @@ SWITCH_STANDARD_API(gethost_api_function)
if (he) {
memcpy(&sa.sin_addr, he->h_addr, sizeof(struct in_addr));
ip = inet_ntop(AF_INET, &sa.sin_addr, buf, sizeof(buf));
ip = switch_inet_ntop(AF_INET, &sa.sin_addr, buf, sizeof(buf));
stream->write_function(stream, "%s", ip);
return SWITCH_STATUS_SUCCESS;
}

View File

@ -5094,7 +5094,7 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session
if (he) {
memcpy(&sa.sin_addr, he->h_addr, sizeof(struct in_addr));
ip = inet_ntop(AF_INET, &sa.sin_addr, buf, sizeof(buf));
ip = switch_inet_ntop(AF_INET, &sa.sin_addr, buf, sizeof(buf));
tmp = switch_string_replace(dest, host, ip);
switch_channel_set_variable_printf(nchannel, "sip_route_uri", "sip:%s", tmp);