Mon Mar 9 12:32:13 CDT 2009 Pekka Pessi <first.last@nokia.com>

* nua: added nua_i_none to nua_event_name()
  Ignore-this: 5d262decadfc28b82ab7292330e20530


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12742 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-03-24 15:41:03 +00:00
parent 21fcb16428
commit 06dfd6b602
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
Tue Mar 24 10:39:35 CDT 2009
Tue Mar 24 10:40:08 CDT 2009

View File

@ -309,6 +309,8 @@ int nua_event_is_incoming_request(nua_event_t event)
char const *nua_event_name(nua_event_t event)
{
switch (event) {
case nua_i_none: return "nua_i_none";
case nua_i_error: return "nua_i_error";
case nua_i_invite: return "nua_i_invite";
case nua_i_cancel: return "nua_i_cancel";