aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-29 17:38:55 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-29 17:38:55 +0000
commit9335980765ed276afb311780004c32feda74744e (patch)
tree7f74cfe1b53e87d892c129826db83b135493cfc5 /apps
parenta173c17ebe035a30f88efba7f3754be1a51c6abd (diff)
Merged revisions 59360 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r59360 | file | 2007-03-29 13:33:58 -0400 (Thu, 29 Mar 2007) | 2 lines Keep a global array of variables indicating whether certain conference rooms are in use. This ensures that two people going into a new dynamic conference when the 'e' option is set don't go into the same conference room. (issue #8835 reported by eliel) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@59361 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c37
1 files changed, 17 insertions, 20 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index f430921b2..fcb0ddc36 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -337,6 +337,8 @@ struct ast_conference {
static AST_LIST_HEAD_STATIC(confs, ast_conference);
+static unsigned int conf_map[1024] = {0, };
+
struct volume {
int desired; /*!< Desired volume adjustment */
int actual; /*!< Actual volume adjustment (for channels that can't adjust) */
@@ -726,6 +728,7 @@ static struct ast_conference *build_conf(char *confno, char *pin, char *pinadmin
{
struct ast_conference *cnf;
struct zt_confinfo ztc = { 0, };
+ int confno_int = 0;
AST_LIST_LOCK(&confs);
@@ -782,6 +785,10 @@ static struct ast_conference *build_conf(char *confno, char *pin, char *pinadmin
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Created MeetMe conference %d for conference '%s'\n", cnf->zapconf, cnf->confno);
AST_LIST_INSERT_HEAD(&confs, cnf, list);
+
+ /* Reserve conference number in map */
+ if ((sscanf(cnf->confno, "%d", &confno_int) == 1) && (confno_int >= 0 && confno_int < 1024))
+ conf_map[confno_int] = 1;
cnfout:
if (cnf)
@@ -1314,9 +1321,13 @@ static void sla_queue_event_conf(enum sla_event_type type, struct ast_channel *c
static int dispose_conf(struct ast_conference *conf)
{
int res = 0;
+ int confno_int = 0;
AST_LIST_LOCK(&confs);
if (ast_atomic_dec_and_test(&conf->refcount)) {
+ /* Take the conference room number out of an inuse state */
+ if ((sscanf(conf->confno, "%d", &confno_int) == 1) && (confno_int >= 0 && confno_int < 1024))
+ conf_map[confno_int] = 0;
conf_free(conf);
res = 1;
}
@@ -2513,21 +2524,11 @@ static int conf_exec(struct ast_channel *chan, void *data)
if (retrycnt > 3)
allowretry = 0;
if (empty) {
- int i, map[1024] = { 0, };
+ int i;
struct ast_config *cfg;
struct ast_variable *var;
int confno_int;
- AST_LIST_LOCK(&confs);
- AST_LIST_TRAVERSE(&confs, cnf, list) {
- if (sscanf(cnf->confno, "%d", &confno_int) == 1) {
- /* Disqualify in use conference */
- if (confno_int >= 0 && confno_int < 1024)
- map[confno_int]++;
- }
- }
- AST_LIST_UNLOCK(&confs);
-
/* We only need to load the config file for static and empty_no_pin (otherwise we don't care) */
if ((empty_no_pin) || (!dynamic)) {
cfg = ast_config_load(CONFIG_FILE_NAME);
@@ -2539,13 +2540,6 @@ static int conf_exec(struct ast_channel *chan, void *data)
if (stringp) {
char *confno_tmp = strsep(&stringp, "|,");
int found = 0;
- if (sscanf(confno_tmp, "%d", &confno_int) == 1) {
- if ((confno_int >= 0) && (confno_int < 1024)) {
- if (stringp && empty_no_pin) {
- map[confno_int]++;
- }
- }
- }
if (!dynamic) {
/* For static: run through the list and see if this conference is empty */
AST_LIST_LOCK(&confs);
@@ -2580,12 +2574,15 @@ static int conf_exec(struct ast_channel *chan, void *data)
/* Select first conference number not in use */
if (ast_strlen_zero(confno) && dynamic) {
- for (i = 0; i < sizeof(map) / sizeof(map[0]); i++) {
- if (!map[i]) {
+ AST_LIST_LOCK(&confs);
+ for (i = 0; i < sizeof(conf_map) / sizeof(conf_map[0]); i++) {
+ if (!conf_map[i]) {
snprintf(confno, sizeof(confno), "%d", i);
+ conf_map[i] = 1;
break;
}
}
+ AST_LIST_UNLOCK(&confs);
}
/* Not found? */