|
@@ -28,7 +28,6 @@ MODULE_VERSION
|
|
|
struct dlg_binds* dlgb_p;
|
|
|
|
|
|
/* parameters */
|
|
|
-char* ro_destination_host_s = "hss.ims.smilecoms.com";
|
|
|
char* ro_service_context_id_root_s = "[email protected]";
|
|
|
char* ro_service_context_id_ext_s = "ext";
|
|
|
char* ro_service_context_id_mnc_s = "01";
|
|
@@ -60,6 +59,7 @@ int ro_db_mode = DB_MODE_NONE;
|
|
|
char *domain = "location";
|
|
|
|
|
|
client_ro_cfg cfg = { str_init(""),
|
|
|
+ str_init(""),
|
|
|
str_init(""),
|
|
|
str_init(""),
|
|
|
0
|
|
@@ -122,7 +122,7 @@ static param_export_t params[] = {
|
|
|
{ "origin_host", PARAM_STR, &cfg.origin_host },
|
|
|
{ "origin_realm", PARAM_STR, &cfg.origin_realm },
|
|
|
{ "destination_realm", PARAM_STR, &cfg.destination_realm },
|
|
|
- { "destination_host", PARAM_STRING, &ro_destination_host_s }, /* Unused parameter? */
|
|
|
+ { "destination_host", PARAM_STR, &cfg.destination_host },
|
|
|
{ "service_context_id_root",PARAM_STRING, &ro_service_context_id_root_s },
|
|
|
{ "service_context_id_ext", PARAM_STRING, &ro_service_context_id_ext_s },
|
|
|
{ "service_context_id_mnc", PARAM_STRING, &ro_service_context_id_mnc_s },
|