From 979e12246ee4905742fa90171f12283531deda40 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Sat, 2 Feb 2008 00:02:28 +0000 Subject: [PATCH] send 200 to keep-alive notifies. Thanks Norm. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7482 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_sofia/sofia.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_sofia/sofia.c b/src/mod/endpoints/mod_sofia/sofia.c index 1b24df8ea5..a54b61f7fb 100644 --- a/src/mod/endpoints/mod_sofia/sofia.c +++ b/src/mod/endpoints/mod_sofia/sofia.c @@ -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; }