aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_queue.c
AgeCommit message (Expand)AuthorFilesLines
2007-10-04Don't allocate space for queue members unless it's needed. You end up deletin...mmichelson1-1/+2
2007-10-04Create a duplicate of the channel's member name as the tab completion stuff w...file1-1/+1
2007-09-19Protect the CDR record from modification by pbx_exec so that the application ...file1-1/+5
2007-09-18Initialize a variable to NULL to make the world happy.file1-1/+1
2007-09-18Moving the logic for handling an empty membername to the create_member functi...mmichelson1-15/+8
2007-09-18there is no need for conditional logic to select ->interface or ->membername,...kpfleming1-11/+5
2007-09-17fix a couple of places where a logical member name (if specified) was not use...kpfleming1-5/+11
2007-09-14Crap, I broke the build. Fixed.mmichelson1-1/+1
2007-09-14Adding member name field to manager events where they were missing beforemmichelson1-2/+4
2007-09-13Preemptively fixing a possible segfault. It is possible that queuename is NULL mmichelson1-1/+1
2007-09-13Added logic to handle the unlikely case that someone has two queues with the ...mmichelson1-1/+13
2007-09-12We should only initialize a realtime queue when it is allocated, not every ti...mmichelson1-2/+1
2007-09-11Fix incorrect uses of ao2_find(). Every one of these calls was reading bogusrussell1-8/+16
2007-09-11Fix another missing unref of member objects. This one was pointed out by Marta.russell1-0/+2
2007-09-11All instances of ao2_iterators which were just named 'i' have been renamedmmichelson1-50/+51
2007-09-11Add a couple more missing unrefs of queue member objectsrussell1-0/+2
2007-09-11Add a missing unref of a queue member in an error handling blockrussell1-0/+1
2007-09-11Document why membercount can not simply be replaced by ao2_container_count()russell1-1/+6
2007-09-10Convert struct member to use refcounts (closes issue #10199)tilghman1-159/+180
2007-09-07Allow the MEMBERINTERFACE variable to be used as the mixmonitor filename.qwell1-2/+4
2007-09-06Fixes an issue where valid DTMF had to be pressed twice to exit a queue if a ...mmichelson1-3/+2
2007-09-05Fixing the build...mmichelson1-0/+1
2007-09-05Reverting behavior of QUEUE_MEMBER_COUNT to only count members who are logged inmmichelson1-1/+6
2007-09-01Changed a comment to be more accurate.mmichelson1-1/+1
2007-08-31Fixed broken behavior of a reload on realtime queues. Prior to this patch, if...mmichelson1-2/+4
2007-08-30Removing an extraneous (and possibly misleading) log message. Firstly, if the...mmichelson1-2/+1
2007-08-30Changed some manager event messages to reflect whether a queue member is a re...mmichelson1-2/+2
2007-08-29This patch, in essence, will correctly pause a realtime queue member and refl...mmichelson1-0/+22
2007-08-29Changed some tabs to spacesmmichelson1-1/+1
2007-08-29This fix creates a more accurate way of detecting whether realtime members we...mmichelson1-4/+8
2007-08-27Resolve a potential deadlock. In this case, a single queue is locked, then th...mmichelson1-0/+4
2007-08-27Found a case where the queue's membercount is off. It does not take into acco...mmichelson1-1/+4
2007-08-24 A minor correction to the available logic of autofill. If a queue member is ...bweschke1-1/+2
2007-08-20Fix the build of app_queuerussell1-49/+49
2007-08-20After a discussion on #asterisk-dev, it was decided that this should be in 1....mmichelson1-0/+2
2007-08-20Found a pointless ternary if. member->dynamic was set to 1 and has no opportu...mmichelson1-1/+1
2007-08-08Changing a bit of logic so that someone will NEVER exit the queue on timeout ...mmichelson1-11/+8
2007-08-01Fixes an issue I introduced to queues wherein a queue with joinempty=yes woul...mmichelson1-0/+5
2007-08-01If a queue uses dynamic realtime members, then the member list should be upda...mmichelson1-0/+54
2007-07-24Added a membercount variable to call_queue struct which keeps track of the nu...mmichelson1-11/+19
2007-07-20Move makeannouncement variable declaration to proper place.file1-2/+2
2007-07-19The diff on this looks pretty big but all I did was remove a pointless if sta...mmichelson1-81/+78
2007-07-19Changes in handling return values of several functions in app_queue. This all...mmichelson1-96/+70
2007-07-18Merged revisions 75657 via svnmerge from dhubbard1-1/+1
2007-07-10Merged revisions 74427 via svnmerge from qwell1-10/+13
2007-07-09Forgot to get rid of an extraneous debug message.mmichelson1-1/+0
2007-07-09The n option for Queue should make the queue exit immediately after failure t...mmichelson1-12/+14
2007-07-05Correcting a minor CLI bug I found. When issuing the queue show command, if y...mmichelson1-2/+9
2007-07-05Merged revisions 73315 via svnmerge from file1-2/+1
2007-06-27Merged revisions 72327 via svnmerge from file1-0/+2