PFLAG_T38_PASSTHRU,
PFLAG_CID_IN_1XX,
PFLAG_IN_DIALOG_CHAT,
- PFLAG_DEL_SUBS_ON_REG,
+ PFLAG_DEL_SUBS_ON_REG_REUSE,
PFLAG_IGNORE_183NOSDP,
PFLAG_PRESENCE_PROBE_ON_REGISTER,
PFLAG_PRESENCE_ON_REGISTER,
} else {
sofia_clear_pflag(profile, PFLAG_PASS_CALLEE_ID);
}
- } else if (!strcasecmp(var, "delete-subs-on-register")) {
- if (switch_true(val)) {
- sofia_set_pflag(profile, PFLAG_DEL_SUBS_ON_REG);
- } else {
- sofia_clear_pflag(profile, PFLAG_DEL_SUBS_ON_REG);
- }
} else if (!strcasecmp(var, "watchdog-enabled")) {
profile->watchdog_enabled = switch_true(val);
} else if (!strcasecmp(var, "watchdog-step-timeout")) {
} else {
sofia_clear_pflag(profile, PFLAG_IN_DIALOG_CHAT);
}
- } else if (!strcasecmp(var, "delete-subs-on-register")) {
- if (switch_true(val)) {
- sofia_set_pflag(profile, PFLAG_DEL_SUBS_ON_REG);
- } else {
- sofia_clear_pflag(profile, PFLAG_DEL_SUBS_ON_REG);
- }
} else if (!strcasecmp(var, "t38-passthru")) {
if (switch_true(val)) {
sofia_set_pflag(profile, PFLAG_T38_PASSTHRU);
proto = alt_proto;
}
- if ((sub_state == nua_substate_active) && (switch_stristr("dialog", (const char *) event))) {
+ if ((sub_state == nua_substate_active)) {
sstr = switch_mprintf("active;expires=%ld", exp_delta);
sql = switch_mprintf("update sip_subscriptions "
"set expires=%ld "
- "where call_id='%q' and event='dialog' and hostname='%q' ",
+ "where call_id='%q'",
(long) switch_epoch_time_now(NULL) + exp_delta,
- call_id,
- mod_sofia_globals.hostname);
-
+ call_id);
if (mod_sofia_globals.debug_presence > 0 || mod_sofia_globals.debug_sla > 0) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR,
- "re-subscribe with dialog detected, sql: %s\n", sql);
+ "re-subscribe event %s, sql: %s\n", event, sql);
}
sofia_glue_execute_sql_now(profile, &sql, SWITCH_TRUE);
} else {
+
+#if 0
if (sofia_test_pflag(profile, PFLAG_MULTIREG)) {
sql = switch_mprintf("delete from sip_subscriptions where call_id='%q' "
"or (proto='%q' and sip_user='%q' and sip_host='%q' "
"proto='%q' and sip_user='%q' and sip_host='%q' and sub_to_user='%q' and sub_to_host='%q' and event='%q' and hostname='%q'",
proto, from_user, from_host, to_user, to_host, event, mod_sofia_globals.hostname);
}
+#endif
+
+ sql = switch_mprintf("delete from sip_subscriptions where call_id='%q'", call_id, mod_sofia_globals.hostname);
+
switch_mutex_lock(profile->ireg_mutex);
switch_assert(sql != NULL);
switch_event_t *auth_params = NULL;
int r = 0;
long reg_count = 0;
- int delete_subs;
const char *agent = "unknown";
const char *pres_on_reg = NULL;
int send_pres = 0;
int is_tls = 0, is_tcp = 0;
- delete_subs = sofia_test_pflag(profile, PFLAG_DEL_SUBS_ON_REG);
-
if (v_event && *v_event) pres_on_reg = switch_event_get_header(*v_event, "send-presence-on-register");
if (!(send_pres = switch_true(pres_on_reg))) {
}
if (auth_res != AUTH_RENEWED) {
if (multi_reg) {
-
- if (delete_subs) {
- if (reg_count == 1) {
- sql = switch_mprintf("update sip_subscriptions set expires=%ld where sip_user='%q' and sip_host='%q' and contact='%q'",
- (long) switch_epoch_time_now(NULL), to_user, sub_host, contact_str);
- sofia_glue_execute_sql_now(profile, &sql, SWITCH_TRUE);
- }
- }
-
-
if (multi_reg_contact) {
sql =
switch_mprintf("delete from sip_registrations where sip_user='%q' and sip_host='%q' and contact='%q'", to_user, reg_host, contact_str);
sql = switch_mprintf("delete from sip_registrations where call_id='%q'", call_id);
}
} else {
- if (delete_subs) {
- sql = switch_mprintf("delete from sip_subscriptions where sip_user='%q' and sip_host='%q'", to_user, sub_host);
- sofia_glue_execute_sql_now(profile, &sql, SWITCH_TRUE);
- }
sql = switch_mprintf("delete from sip_registrations where sip_user='%q' and sip_host='%q'", to_user, reg_host);
}
switch_mutex_lock(profile->ireg_mutex);
if ((p = strchr(icontact + 4, ':'))) {
*p = '\0';
}
- if (delete_subs) {
- if (multi_reg_contact) {
- sql =
- switch_mprintf("update sip_subscriptions set expires=%ld where sip_user='%q' and sip_host='%q' and contact='%q'",
- (long) switch_epoch_time_now(NULL), to_user, sub_host, contact_str);
- } else {
- sql = switch_mprintf("update sip_subscriptions set expires=%ld where call_id='%q'", (long) switch_epoch_time_now(NULL), call_id);
- }
-
- sofia_glue_execute_sql_now(profile, &sql, SWITCH_TRUE);
- }
if (multi_reg_contact) {
sql =
switch_safe_free(icontact);
} else {
- if (delete_subs) {
- if ((sql = switch_mprintf("update sip_subscriptions set expires=%ld where sip_user='%q' and sip_host='%q'",
- (long) switch_epoch_time_now(NULL), to_user, sub_host))) {
- sofia_glue_execute_sql_now(profile, &sql, SWITCH_TRUE);
- }
- }
+
if ((sql = switch_mprintf("delete from sip_registrations where sip_user='%q' and sip_host='%q'", to_user, reg_host))) {
sofia_glue_execute_sql_now(profile, &sql, SWITCH_TRUE);
}