提交 287db73e authored 作者: Anthony Minessale's avatar Anthony Minessale

fix some win32 issues in sofia

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15373 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 f5b0b8e2
...@@ -207,7 +207,7 @@ char *generate_pai_str(switch_core_session_t *session) ...@@ -207,7 +207,7 @@ char *generate_pai_str(switch_core_session_t *session)
callee_name, callee_number, callee_name, callee_number); callee_name, callee_number, callee_name, callee_number);
} else { } else {
pai = switch_core_session_sprintf(tech_pvt->session, "P-Asserted-Identity: \"%s\" <%s>\n", pai = switch_core_session_sprintf(tech_pvt->session, "P-Asserted-Identity: \"%s\" <%s>\n",
callee_name, callee_number, callee_name, callee_number); callee_name, callee_number);
} }
} }
return pai; return pai;
...@@ -2958,9 +2958,9 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session ...@@ -2958,9 +2958,9 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session
} }
if ((host = switch_core_session_strdup(nsession, tech_pvt->dest))) { if ((host = switch_core_session_strdup(nsession, tech_pvt->dest))) {
char *p = strchr(host, '@'); char *pp = strchr(host, '@');
if (p) { if (pp) {
host = p+1; host = pp+1;
} else { } else {
host = NULL; host = NULL;
dest_to = NULL; dest_to = NULL;
......
...@@ -2855,7 +2855,7 @@ switch_status_t config_sofia(int reload, char *profile_name) ...@@ -2855,7 +2855,7 @@ switch_status_t config_sofia(int reload, char *profile_name)
} else if (!strcasecmp(var, "challenge-realm")) { } else if (!strcasecmp(var, "challenge-realm")) {
profile->challenge_realm = switch_core_strdup(profile->pool, val); profile->challenge_realm = switch_core_strdup(profile->pool, val);
} else if (!strcasecmp(var, "dtmf-duration")) { } else if (!strcasecmp(var, "dtmf-duration")) {
int dur = atoi(val); uint32_t dur = atoi(val);
if (dur > switch_core_min_dtmf_duration(0) && dur < switch_core_max_dtmf_duration(0)) { if (dur > switch_core_min_dtmf_duration(0) && dur < switch_core_max_dtmf_duration(0)) {
profile->dtmf_duration = dur; profile->dtmf_duration = dur;
} else { } else {
...@@ -4030,8 +4030,8 @@ static void sofia_handle_sip_i_state(switch_core_session_t *session, int status, ...@@ -4030,8 +4030,8 @@ static void sofia_handle_sip_i_state(switch_core_session_t *session, int status,
if (sofia_glue_activate_rtp(tech_pvt, 0) != SWITCH_STATUS_SUCCESS) { if (sofia_glue_activate_rtp(tech_pvt, 0) != SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "RTP Error!\n"); switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "RTP Error!\n");
goto done;
switch_channel_hangup(channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER); switch_channel_hangup(channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER);
goto done;
} else { } else {
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Processing updated SDP\n"); switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Processing updated SDP\n");
} }
......
...@@ -1660,6 +1660,7 @@ void sofia_presence_handle_sip_i_subscribe(int status, ...@@ -1660,6 +1660,7 @@ void sofia_presence_handle_sip_i_subscribe(int status,
*/ */
sql = switch_mprintf("insert into sip_subscriptions " sql = switch_mprintf("insert into sip_subscriptions "
"(proto,sip_user,sip_host,sub_to_user,sub_to_host,presence_hosts,event,contact,call_id,full_from," "(proto,sip_user,sip_host,sub_to_user,sub_to_host,presence_hosts,event,contact,call_id,full_from,"
"full_via,expires,user_agent,accept,profile_name,hostname,network_port,network_ip) " "full_via,expires,user_agent,accept,profile_name,hostname,network_port,network_ip) "
...@@ -1667,7 +1668,7 @@ void sofia_presence_handle_sip_i_subscribe(int status, ...@@ -1667,7 +1668,7 @@ void sofia_presence_handle_sip_i_subscribe(int status,
proto, from_user, from_host, to_user, to_host, profile->presence_hosts ? profile->presence_hosts : to_host, proto, from_user, from_host, to_user, to_host, profile->presence_hosts ? profile->presence_hosts : to_host,
event, contact_str, call_id, full_from, full_via, event, contact_str, call_id, full_from, full_via,
//sofia_test_pflag(profile, PFLAG_MULTIREG) ? switch_epoch_time_now(NULL) + exp_delta : exp_delta * -1, //sofia_test_pflag(profile, PFLAG_MULTIREG) ? switch_epoch_time_now(NULL) + exp_delta : exp_delta * -1,
switch_epoch_time_now(NULL) + exp_delta, (long)switch_epoch_time_now(NULL) + exp_delta,
full_agent, accept, profile->name,mod_sofia_globals.hostname, network_port, network_ip); full_agent, accept, profile->name,mod_sofia_globals.hostname, network_port, network_ip);
if (mod_sofia_globals.debug_presence > 0) { if (mod_sofia_globals.debug_presence > 0) {
......
...@@ -2068,7 +2068,6 @@ auth_res_t sofia_reg_parse_auth(sofia_profile_t *profile, ...@@ -2068,7 +2068,6 @@ auth_res_t sofia_reg_parse_auth(sofia_profile_t *profile,
if (nc && cnonce && qop) { if (nc && cnonce && qop) {
char *sql;
#if defined(_WIN32) && !defined(_WIN64) #if defined(_WIN32) && !defined(_WIN64)
#define LL_FMT "ll" #define LL_FMT "ll"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论