aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-21 05:21:39 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-21 05:21:39 +0000
commitcaa5ed8c50b912b5153a13b90fe43159075a25ce (patch)
tree19950c90fa227613d17a01f367e3435696be4aeb /utils
parentbe2dacc8f851258550fa11adefe2bc023d3d417c (diff)
Ignore some more unused generated events.
(closes issue #12042) Reported by: junky Patches: astman_events.diff uploaded by junky (license 177) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@104014 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rw-r--r--utils/astman.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/utils/astman.c b/utils/astman.c
index 900e6f759..06fe8b3ad 100644
--- a/utils/astman.c
+++ b/utils/astman.c
@@ -41,6 +41,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/md5.h"
#include "asterisk/linkedlists.h"
+
#undef gethostbyname
#define MAX_HEADERS 80
@@ -234,7 +235,15 @@ static struct event {
{ "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)