summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-11-06 21:33:01 +0000
committerMark Spencer <markster@digium.com>2004-11-06 21:33:01 +0000
commit6cb38ac23a539bca16c989b195fdeca08779abb5 (patch)
treea5f42628f0ff2ce1270ac8d345ee3b0d2dd37d6f /channel.c
parent0f11b3b189db6c59853a6e8b8d5c42e071a93ceb (diff)
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
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/channel.c b/channel.c
index 5db5ac1dd..2b9c877bf 100755
--- a/channel.c
+++ b/channel.c
@@ -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);