[Asterisk-cvs] asterisk/channels chan_skinny.c,NONE,1.1
jeremy at lists.digium.com
jeremy at lists.digium.com
Thu Sep 11 14:43:04 CDT 2003
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv19649
Added Files:
chan_skinny.c
Log Message:
initial import of skinny, more coming soon
--- NEW FILE: chan_skinny.c ---
/*
* Asterisk -- A telephony toolkit for Linux.
*
* Implementation of the Skinny protocol
*
* Asterisk is Copyright (C) 1999-2003 Mark Spencer
*
* chan_skinny was developed by Jeremy McNamara & Florian Overkamp
*
* This program is free software, distributed under the terms of
* the GNU General Public License
*/
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <string.h>
#include <asterisk/lock.h>
[...2591 lines suppressed...]
}
int usecount()
{
int res;
ast_mutex_lock(&usecnt_lock);
res = usecnt;
ast_mutex_unlock(&usecnt_lock);
return res;
}
char *key()
{
return ASTERISK_GPL_KEY;
}
char *description()
{
return desc;
}
More information about the svn-commits
mailing list