Add features (incomplete, highly experimental), fix DundiLookup app, debug improvements (bug #2800)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4167 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-11-06 21:33:01 +00:00
parent 0f11b3b189
commit 6cb38ac23a
7 changed files with 598 additions and 23 deletions

View File

@@ -59,6 +59,8 @@
static int shutting_down = 0;
static int uniqueint = 0;
unsigned long global_fin = 0, global_fout = 0;
/* XXX Lock appropriately in more functions XXX */
struct chanlist {
@@ -334,8 +336,8 @@ struct ast_channel *ast_channel_alloc(int needqueue)
tmp->streamid = -1;
tmp->appl = NULL;
tmp->data = NULL;
tmp->fin = 0;
tmp->fout = 0;
tmp->fin = global_fin;
tmp->fout = global_fout;
snprintf(tmp->uniqueid, sizeof(tmp->uniqueid), "%li.%d", (long)time(NULL), uniqueint++);
headp=&tmp->varshead;
ast_mutex_init(&tmp->lock);