send 200 to keep-alive notifies. Thanks Norm.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7482 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-02-02 00:02:28 +00:00
parent a592c6a65c
commit 979e12246e
1 changed files with 12 additions and 1 deletions

View File

@ -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;
}