Browse Source

parser: added ua-profile event type

Mihály Mészáros 14 years ago
parent
commit
081ed6600b
2 changed files with 3 additions and 1 deletions
  1. 1 0
      parser/parse_event.c
  2. 2 1
      parser/parse_event.h

+ 1 - 0
parser/parse_event.c

@@ -56,6 +56,7 @@ static struct {
 	{STR_STATIC_INIT("sip-profile"),     EVENT_SIP_PROFILE},
 	{STR_STATIC_INIT("message-summary"), EVENT_MESSAGE_SUMMARY},
 	{STR_STATIC_INIT("dialog"),          EVENT_DIALOG},
+	{STR_STATIC_INIT("ua-profile"),      EVENT_UA_PROFILE},
 	/* The following must be the last element in the array */
 	{STR_NULL,                           EVENT_OTHER}
 };

+ 2 - 1
parser/parse_event.h

@@ -43,7 +43,8 @@ enum event_type {
 	EVENT_SIP_PROFILE,
 	EVENT_XCAP_CHANGE,
 	EVENT_DIALOG,
-	EVENT_MESSAGE_SUMMARY
+	EVENT_MESSAGE_SUMMARY,
+	EVENT_UA_PROFILE
 };