Allow non-realtime queues to have realtime members

(issue #10424, reported and patched by irroot)



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79238 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson 2007-08-13 15:39:48 +00:00
parent a2847deb73
commit 8d929d7afd
2 changed files with 4 additions and 0 deletions

View File

@ -144,6 +144,7 @@ Queue changes
position changes frequently.
* Added additional information to EXITWITHTIMEOUT and EXITWITHKEY events in the
queue log.
* Added ability for non-realtime queues to have realtime members
MeetMe Changes
--------------

View File

@ -410,6 +410,7 @@ struct call_queue {
static AST_LIST_HEAD_STATIC(queues, call_queue);
static void update_realtime_members(struct call_queue *q);
static int set_member_paused(const char *queuename, const char *interface, int paused);
static void set_queue_result(struct ast_channel *chan, enum queue_result res)
@ -1254,6 +1255,8 @@ static struct call_queue *load_realtime_queue(const char *queuename)
ast_variables_destroy(queue_vars);
AST_LIST_UNLOCK(&queues);
} else {
update_realtime_members(q);
}
return q;
}