mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-06-03 03:50:10 +00:00
mod_fifo: Document the fifo_queue_t structure
This commit is contained in:
parent
5f4ed9c123
commit
42ebfbfc59
@ -111,6 +111,16 @@ typedef enum {
|
|||||||
NODE_STRATEGY_ENTERPRISE
|
NODE_STRATEGY_ENTERPRISE
|
||||||
} outbound_strategy_t;
|
} outbound_strategy_t;
|
||||||
|
|
||||||
|
/*!\struct fifo_queue_t
|
||||||
|
* \brief Queue of callers
|
||||||
|
*
|
||||||
|
* Callers are placed into a queue as events in `data` which is an
|
||||||
|
* array of such events. The array size is hard-coded as 1000
|
||||||
|
* elements.
|
||||||
|
*
|
||||||
|
* Fifo nodes are composed of an array of these queues representing
|
||||||
|
* each priority level of the fifo.
|
||||||
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int nelm;
|
int nelm;
|
||||||
int idx;
|
int idx;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user