summaryrefslogtreecommitdiff
path: root/main/event.c
diff options
context:
space:
mode:
authorMichael L. Young <elgueromexicano@gmail.com>2012-04-20 16:50:38 +0000
committerMichael L. Young <elgueromexicano@gmail.com>2012-04-20 16:50:38 +0000
commit255214c5dab518a7d717cb8c5c0be163d39a6b1e (patch)
tree92c1e974f3b02477f5a6fd60a830d29fccca61a5 /main/event.c
parent01194c581139eb19063700418ce2a1df0c69ef02 (diff)
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 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@362919 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/event.c')
-rw-r--r--main/event.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/event.c b/main/event.c
index 1bb1e784d..f5a8e709a 100644
--- a/main/event.c
+++ b/main/event.c
@@ -267,6 +267,7 @@ static const struct ie_map {
[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" },
};