From 287db73e08ce18f56d61aa11b4ce1797169e7db3 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 5 Nov 2009 17:22:15 +0000 Subject: [PATCH] fix some win32 issues in sofia git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15373 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_sofia/mod_sofia.c | 8 ++++---- src/mod/endpoints/mod_sofia/sofia.c | 4 ++-- src/mod/endpoints/mod_sofia/sofia_presence.c | 3 ++- src/mod/endpoints/mod_sofia/sofia_reg.c | 1 - 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index 6b2e221187..358f5fff84 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -207,7 +207,7 @@ char *generate_pai_str(switch_core_session_t *session) callee_name, callee_number, callee_name, callee_number); } else { 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; @@ -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))) { - char *p = strchr(host, '@'); - if (p) { - host = p+1; + char *pp = strchr(host, '@'); + if (pp) { + host = pp+1; } else { host = NULL; dest_to = NULL; diff --git a/src/mod/endpoints/mod_sofia/sofia.c b/src/mod/endpoints/mod_sofia/sofia.c index 96bef028bd..9bd58bb845 100644 --- a/src/mod/endpoints/mod_sofia/sofia.c +++ b/src/mod/endpoints/mod_sofia/sofia.c @@ -2855,7 +2855,7 @@ switch_status_t config_sofia(int reload, char *profile_name) } else if (!strcasecmp(var, "challenge-realm")) { profile->challenge_realm = switch_core_strdup(profile->pool, val); } 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)) { profile->dtmf_duration = dur; } else { @@ -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) { 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); + goto done; } else { switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Processing updated SDP\n"); } diff --git a/src/mod/endpoints/mod_sofia/sofia_presence.c b/src/mod/endpoints/mod_sofia/sofia_presence.c index 34a0d1aed1..d6c55670b5 100644 --- a/src/mod/endpoints/mod_sofia/sofia_presence.c +++ b/src/mod/endpoints/mod_sofia/sofia_presence.c @@ -1660,6 +1660,7 @@ void sofia_presence_handle_sip_i_subscribe(int status, */ + 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," "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, 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, //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); if (mod_sofia_globals.debug_presence > 0) { diff --git a/src/mod/endpoints/mod_sofia/sofia_reg.c b/src/mod/endpoints/mod_sofia/sofia_reg.c index e9e1f74bb2..6ecd6f551a 100644 --- a/src/mod/endpoints/mod_sofia/sofia_reg.c +++ b/src/mod/endpoints/mod_sofia/sofia_reg.c @@ -2068,7 +2068,6 @@ auth_res_t sofia_reg_parse_auth(sofia_profile_t *profile, if (nc && cnonce && qop) { - char *sql; #if defined(_WIN32) && !defined(_WIN64) #define LL_FMT "ll"