summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2010-04-02 23:55:57 +0000
committerRussell Bryant <russell@russellbryant.com>2010-04-02 23:55:57 +0000
commita541609dde8fdcf49d952cf496f1d8d9403d572e (patch)
tree64b211784bed78d7dfd54e53223fbe9b5f7ab49b /apps
parentdf3fc304c9123ab2459e6ae3db359ea294acb860 (diff)
Export MEETMEBOOKID and fix pin-less conferences with realtime conferences
(closes issue #16866) Reported by: DEA Patches: rt-meetme-options.txt uploaded by DEA (license 3) Tested by: DEA Review: https://reviewboard.asterisk.org/r/582/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@256019 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 73be47145..1217b39c7 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -3477,6 +3477,11 @@ bailoutandtrynormal:
/* Return the number of seconds the user was in the conf */
snprintf(meetmesecs, sizeof(meetmesecs), "%d", (int) (time(NULL) - user->jointime));
pbx_builtin_setvar_helper(chan, "MEETMESECS", meetmesecs);
+
+ /* Return the RealTime bookid for CDR linking */
+ if (rt_schedule) {
+ pbx_builtin_setvar_helper(chan, "MEETMEBOOKID", conf->bookid);
+ }
}
ast_free(user);
AST_LIST_UNLOCK(&confs);
@@ -4051,6 +4056,14 @@ static int conf_exec(struct ast_channel *chan, const char *data)
/* No pin required */
allowretry = 0;
+ /* For RealTime conferences without a pin
+ * should still support loading options
+ */
+ if (!ast_strlen_zero(cnf->useropts)) {
+ char *opts = ast_strdupa(cnf->useropts);
+ ast_app_parse_options64(meetme_opts, &confflags, optargs, opts);
+ }
+
/* Run the conference */
res = conf_run(chan, cnf, &confflags, optargs);
}