Displaying 3 results from an estimated 3 matches for "queuetimeout".
Did you mean:
queue_timeout
2005 Jan 27
2
Avoiding queue retries without hangs?
Talking * 1.0.12 here.
Problem: I'd like to avoid retries with queue, i.e. if members choose to
ignore a call they should not be bothered again. On the other hand,
when a call times out according to the Queue(...) timeout, the call
should proceed to voicemail.
Setting retry in queue.conf to a high value unfortunately doesn't solve
the problem. More specifically, the timeout t given to
2004 Dec 06
1
Queue Timeout
I am using the CVS version as of July 23, 2004. Is the queuetimeout
option not available in that cvs? If not, how do I go about applying
one of the queue patches without taking my system down?
2005 Aug 25
2
Custom Application For Asterisk
...hannel *chan, char *filename);
AST_MUTEX_DEFINE_STATIC(tdslock);
static TDSSOCKET *tds;
static TDSLOGIN *login;
static TDSCONTEXT *context;
STANDARD_LOCAL_USER;
LOCAL_USER_DECL;
struct abcd_user {
char moh[80];
char announce[80];
char context[80];
int handled;
time_t start;
int queuetimeout;
struct ast_channel *chan;
struct queue_ent *next;
};
static int abcd_exec(struct ast_channel *chan, void *data)
{
int retried = 0;
int res = 0;
int res_type;
int tdsret;
int rowtype;
int computeid;
int i;
int sucs = 0;
struct localuser *u;
char mysqlcmd[1024];
char...