add sip-force-extension
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15191 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
516db24b75
commit
bdb8bd061b
|
@ -714,6 +714,7 @@ uint8_t sofia_reg_handle_register(nua_t *nua, sofia_profile_t *profile, nua_hand
|
||||||
char *dup_mwi_account = NULL;
|
char *dup_mwi_account = NULL;
|
||||||
char *mwi_user = NULL;
|
char *mwi_user = NULL;
|
||||||
char *mwi_host = NULL;
|
char *mwi_host = NULL;
|
||||||
|
char *var = NULL;
|
||||||
const char *from_user = NULL;
|
const char *from_user = NULL;
|
||||||
const char *from_host = NULL;
|
const char *from_host = NULL;
|
||||||
const char *reg_host = profile->reg_db_domain;
|
const char *reg_host = profile->reg_db_domain;
|
||||||
|
@ -1008,6 +1009,11 @@ uint8_t sofia_reg_handle_register(nua_t *nua, sofia_profile_t *profile, nua_hand
|
||||||
}
|
}
|
||||||
reg:
|
reg:
|
||||||
|
|
||||||
|
|
||||||
|
if (v_event && *v_event && (var = switch_event_get_header(*v_event, "sip-force-extension"))) {
|
||||||
|
to_user = var;
|
||||||
|
}
|
||||||
|
|
||||||
if (v_event && *v_event && (mwi_account = switch_event_get_header(*v_event, "mwi-account"))) {
|
if (v_event && *v_event && (mwi_account = switch_event_get_header(*v_event, "mwi-account"))) {
|
||||||
dup_mwi_account = strdup(mwi_account);
|
dup_mwi_account = strdup(mwi_account);
|
||||||
switch_assert(dup_mwi_account != NULL);
|
switch_assert(dup_mwi_account != NULL);
|
||||||
|
|
Loading…
Reference in New Issue