[svn-commits] elguero: branch 10 r362918 - /branches/10/main/event.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Apr 20 11:47:55 CDT 2012


Author: elguero
Date: Fri Apr 20 11:47:51 2012
New Revision: 362918

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=362918
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)

Modified:
    branches/10/main/event.c

Modified: branches/10/main/event.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/main/event.c?view=diff&rev=362918&r1=362917&r2=362918
==============================================================================
--- branches/10/main/event.c (original)
+++ branches/10/main/event.c Fri Apr 20 11:47:51 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 svn-commits mailing list