mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-08 19:08:14 +00:00
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:
1
CHANGES
1
CHANGES
@@ -144,6 +144,7 @@ Queue changes
|
|||||||
position changes frequently.
|
position changes frequently.
|
||||||
* Added additional information to EXITWITHTIMEOUT and EXITWITHKEY events in the
|
* Added additional information to EXITWITHTIMEOUT and EXITWITHKEY events in the
|
||||||
queue log.
|
queue log.
|
||||||
|
* Added ability for non-realtime queues to have realtime members
|
||||||
|
|
||||||
MeetMe Changes
|
MeetMe Changes
|
||||||
--------------
|
--------------
|
||||||
|
|||||||
@@ -410,6 +410,7 @@ struct call_queue {
|
|||||||
|
|
||||||
static AST_LIST_HEAD_STATIC(queues, 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 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)
|
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_variables_destroy(queue_vars);
|
||||||
|
|
||||||
AST_LIST_UNLOCK(&queues);
|
AST_LIST_UNLOCK(&queues);
|
||||||
|
} else {
|
||||||
|
update_realtime_members(q);
|
||||||
}
|
}
|
||||||
return q;
|
return q;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user