aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-01 22:54:18 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-01 22:54:18 +0000
commit85c4852c072c804c8d9ba7081a1690e0e0e9e747 (patch)
tree307a3af3f267bfd600d2a4e66d2e3d70afc94248 /apps/app_meetme.c
parente2b7604cc5806783e20134107c4379a9385a631b (diff)
Oops slightly premature
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3126 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rwxr-xr-xapps/app_meetme.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 9eb7d2ee9..6d8d8cb33 100755
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -92,7 +92,7 @@ LOCAL_USER_DECL;
static struct ast_conference {
char confno[AST_MAX_EXTENSION]; /* Conference */
- struct ast_channel *chan; /* Announcements channel */
+ int fd; /* Announcements fd */
int zapconf; /* Zaptel Conf # */
int users; /* Number of active users */
int markedusers; /* Number of marked users */
@@ -181,7 +181,7 @@ static void conf_play(struct ast_conference *conf, int sound)
len = 0;
}
if (data)
- careful_write(conf->chan->fds[0], data, len);
+ careful_write(conf->fd, data, len);
ast_mutex_unlock(&conflock);
}
@@ -203,8 +203,8 @@ static struct ast_conference *build_conf(char *confno, char *pin, int make, int
memset(cnf, 0, sizeof(struct ast_conference));
strncpy(cnf->confno, confno, sizeof(cnf->confno) - 1);
strncpy(cnf->pin, pin, sizeof(cnf->pin) - 1);
- cnf->chan = ast_request("zap", AST_FORMAT_ULAW, "pseudo");
- if (!cnf->chan) {
+ cnf->fd = open("/dev/zap/pseudo", O_RDWR);
+ if (cnf->fd < 0) {
ast_log(LOG_WARNING, "Unable to open pseudo channel\n");
free(cnf);
cnf = NULL;
@@ -214,10 +214,10 @@ static struct ast_conference *build_conf(char *confno, char *pin, int make, int
/* Setup a new zap conference */
ztc.chan = 0;
ztc.confno = -1;
- ztc.confmode = ZT_CONF_CONFANN;
- if (ioctl(cnf->chan->fds[0], ZT_SETCONF, &ztc)) {
+ ztc.confmode = ZT_CONF_CONF | ZT_CONF_TALKER | ZT_CONF_LISTENER;
+ if (ioctl(cnf->fd, ZT_SETCONF, &ztc)) {
ast_log(LOG_WARNING, "Error setting conference\n");
- ast_hangup(cnf->chan);
+ close(cnf->fd);
free(cnf);
cnf = NULL;
goto cnfout;
@@ -927,7 +927,7 @@ outrun:
}
if (!cur)
ast_log(LOG_WARNING, "Conference not found\n");
- ast_hangup(conf->chan);
+ close(conf->fd);
free(conf);
} else {
/* Remove the user struct */