[asterisk-commits] tilghman: trunk r104014 - /trunk/utils/astman.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Feb 20 23:21:40 CST 2008
Author: tilghman
Date: Wed Feb 20 23:21:39 2008
New Revision: 104014
URL: http://svn.digium.com/view/asterisk?view=rev&rev=104014
Log:
Ignore some more unused generated events.
(closes issue #12042)
Reported by: junky
Patches:
astman_events.diff uploaded by junky (license 177)
Modified:
trunk/utils/astman.c
Modified: trunk/utils/astman.c
URL: http://svn.digium.com/view/asterisk/trunk/utils/astman.c?view=diff&rev=104014&r1=104013&r2=104014
==============================================================================
--- trunk/utils/astman.c (original)
+++ trunk/utils/astman.c Wed Feb 20 23:21:39 2008
@@ -41,6 +41,7 @@
#include "asterisk/md5.h"
#include "asterisk/linkedlists.h"
+
#undef gethostbyname
#define MAX_HEADERS 80
@@ -234,7 +235,15 @@
{ "Dial", event_ignore },
{ "PeerStatus", event_ignore },
{ "MessageWaiting", event_ignore },
- { "Newcallerid", event_ignore }
+ { "Newcallerid", event_ignore },
+ { "AGIExec", event_ignore},
+ { "VarSet", event_ignore},
+ { "MeetmeTalking", event_ignore},
+ { "MeetmeJoin", event_ignore},
+ { "MeetmeLeave", event_ignore},
+ { "MeetmeEnd", event_ignore},
+ { "MeetmeMute", event_ignore},
+ { "Masquerade", event_ignore},
};
static int process_message(struct ast_mansession *s, struct message *m)
More information about the asterisk-commits
mailing list