[asterisk-commits] elguero: trunk r362919 - in /trunk: ./ main/event.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Apr 20 11:50:42 CDT 2012
Author: elguero
Date: Fri Apr 20 11:50:38 2012
New Revision: 362919
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=362919
Log:
Add missing payload type to events API
The Security Events Framework API was changed while adding the generation of
security events in chan_sip. A payload type and name was missed from being
added to struct ie_maps.
(closes issue ASTERISK-19759)
Reported by: Michael L. Young
Patches:
issue-asterisk-19759.diff uploaded by Michael L. Young (license 5026)
........
Merged revisions 362918 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/main/event.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/main/event.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/event.c?view=diff&rev=362919&r1=362918&r2=362919
==============================================================================
--- trunk/main/event.c (original)
+++ trunk/main/event.c Fri Apr 20 11:50:38 2012
@@ -267,6 +267,7 @@
[AST_EVENT_IE_RECEIVED_CHALLENGE] = { AST_EVENT_IE_PLTYPE_STR, "ReceivedChallenge" },
[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" },
};
More information about the asterisk-commits
mailing list