Meetme Flags of the dialplan

hi,
I need to know where are the flags I’d passed through the dialplan. I’m trying to modify ‘app_meetme.c’ but I can’t find the way to pass the flags to the event ‘meetmejoin’

char flags [10] = "THE FLAGS WILL BE HERE";
manager_event (EVENT_FLAG_CALL, “MeetmeJoin”
“Channel:%s \r\n”
“Uniqueid:%s \r\n”
“MeetMe:%s \r\n”
“Flags:%s \r\n”
“Usernum:%d \r\n”
“CallerIDnum:%s \r\n”
“CallerIDname:%s \r\n”,
chan-> name, chan-> uniqueid, conf-> confno, flags, user-> user_no,
S_OR (user-> chan-> cid.cid_num, “”)
S_OR (user-> chan-> cid.cid_name, “”)
);

Not clear.

Are you trying to read a channel variable. If so into pbx_builtin_getvar_helper()

I set the dial plan like this:

exten => 1234,1,Answer
exten => 1234,2,Meetme(1034,[color=#FF0000]dWacL[/color])

I want to get the variable that contains the flags
that I set in the dial plan to display in the event manager ‘Meetmejoin’ in the file app_meetme.c…

Today is this way
Event MeetmeJoin
Privilege call,all
Channel SIP/1000-0000000c
Uniqueid 1310661594.19
Meetme 1034
Usernum 2
CallerIDnum 1000
CallerIDname Diego

What I want
Event MeetmeJoin
Privilege call,all
Channel SIP/1000-0000000c
Uniqueid 1310661594.19
Meetme 1034
[color=#FF0000]Flags: dWacL[/color]
Usernum 2
CallerIDnum 1000
CallerIDname Diego

There is no particular reason they would be in an in-scope variable at that point in the code. If they are tracing them through from the *data parameter of conf_exec will take me at least as long as it should do you.

Thanks anyway…