提交 979e1224 authored 作者: Michael Jerris's avatar Michael Jerris

send 200 to keep-alive notifies. Thanks Norm.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7482 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 a592c6a6
......@@ -90,8 +90,19 @@ void sofia_handle_sip_i_notify(switch_core_session_t *session, int status,
{
switch_channel_t *channel = NULL;
/* make sure we have a proper event */
if (!sip || !sip->sip_event) {
goto error;
}
/* Automatically return a 200 OK for Event: keep-alive */
if (!strcasecmp(sip->sip_event->o_type, "keep-alive")) {
nua_respond(nh, SIP_200_OK, NUTAG_WITH_THIS(nua), TAG_END());
return;
}
/* make sure we have a proper "talk" event */
if (!session || !sip || !sip->sip_event || strcasecmp(sip->sip_event->o_type, "talk")) {
if (!session || strcasecmp(sip->sip_event->o_type, "talk")) {
goto error;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论