[asterisk-commits] qwell: branch 11 r382390 - in /branches/11: ./ main/event.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Mar 4 15:12:48 CST 2013
Author: qwell
Date: Mon Mar 4 15:12:45 2013
New Revision: 382390
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=382390
Log:
Fix comparison of presence state in event subsystem.
Several new IEs were not given types (or names), causing the comparison
function to improperly succeed. This adds those.
(closes issue AST-1128)
Modified:
branches/11/ (props changed)
branches/11/main/event.c
Propchange: branches/11/
------------------------------------------------------------------------------
svn:mergeinfo = /certified/branches/1.8.15:382389
Modified: branches/11/main/event.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/main/event.c?view=diff&rev=382390&r1=382389&r2=382390
==============================================================================
--- branches/11/main/event.c (original)
+++ branches/11/main/event.c Mon Mar 4 15:12:45 2013
@@ -215,6 +215,7 @@
[AST_EVENT_CEL] = "CEL",
[AST_EVENT_SECURITY] = "Security",
[AST_EVENT_NETWORK_CHANGE] = "NetworkChange",
+ [AST_EVENT_PRESENCE_STATE] = "PresenceState",
};
/*!
@@ -279,7 +280,11 @@
[AST_EVENT_IE_RECEIVED_HASH] = { AST_EVENT_IE_PLTYPE_STR, "ReceivedHash" },
[AST_EVENT_IE_USING_PASSWORD] = { AST_EVENT_IE_PLTYPE_UINT, "UsingPassword" },
[AST_EVENT_IE_ATTEMPTED_TRANSPORT] = { AST_EVENT_IE_PLTYPE_STR, "AttemptedTransport" },
- [AST_EVENT_IE_CACHABLE] = { AST_EVENT_IE_PLTYPE_UINT, "Cachable" },
+ [AST_EVENT_IE_CACHABLE] = { AST_EVENT_IE_PLTYPE_UINT, "Cachable" },
+ [AST_EVENT_IE_PRESENCE_PROVIDER] = { AST_EVENT_IE_PLTYPE_STR, "PresenceProvider" },
+ [AST_EVENT_IE_PRESENCE_STATE] = { AST_EVENT_IE_PLTYPE_UINT, "PresenceState" },
+ [AST_EVENT_IE_PRESENCE_SUBTYPE] = { AST_EVENT_IE_PLTYPE_STR, "PresenceSubtype" },
+ [AST_EVENT_IE_PRESENCE_MESSAGE] = { AST_EVENT_IE_PLTYPE_STR, "PresenceMessage" },
};
const char *ast_event_get_type_name(const struct ast_event *event)
More information about the asterisk-commits
mailing list