提交 f50d14a7 authored 作者: Anthony Minessale's avatar Anthony Minessale

treate no method as INVITE

上级 4f7122c8
...@@ -1204,7 +1204,11 @@ static void our_sofia_event_callback(nua_event_t event, ...@@ -1204,7 +1204,11 @@ static void our_sofia_event_callback(nua_event_t event,
refer_to = sip_header_as_string(nua_handle_home(nh), (void *) sip->sip_refer_to); refer_to = sip_header_as_string(nua_handle_home(nh), (void *) sip->sip_refer_to);
if ((params = strchr(refer_to, ';'))) { if ((params = strchr(refer_to, ';'))) {
*params++ = '\0'; *params++ = '\0';
if ((method = switch_find_parameter(params, "method", NULL))) {
if (!(method = switch_find_parameter(params, "method", NULL))) {
method = strdup("INVITE");
}
if (!strcasecmp(method, "INVITE")) { if (!strcasecmp(method, "INVITE")) {
action = "call"; action = "call";
} else if (!strcasecmp(method, "BYE")) { } else if (!strcasecmp(method, "BYE")) {
...@@ -1213,7 +1217,6 @@ static void our_sofia_event_callback(nua_event_t event, ...@@ -1213,7 +1217,6 @@ static void our_sofia_event_callback(nua_event_t event,
action = method; action = method;
} }
} }
}
refer_to = sofia_glue_get_url_from_contact(refer_to, 0); refer_to = sofia_glue_get_url_from_contact(refer_to, 0);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论