mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 16:21:01 +00:00
Merged revisions 37417 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r37417 | kpfleming | 2006-07-12 08:18:21 -0500 (Wed, 12 Jul 2006) | 2 lines get rid of some more printf's (although most of these were ifdef-ed out) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37418 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3372,9 +3372,6 @@ static int zt_ring_phone(struct zt_pvt *p)
|
|||||||
do {
|
do {
|
||||||
x = ZT_RING;
|
x = ZT_RING;
|
||||||
res = ioctl(p->subs[SUB_REAL].zfd, ZT_HOOK, &x);
|
res = ioctl(p->subs[SUB_REAL].zfd, ZT_HOOK, &x);
|
||||||
#if 0
|
|
||||||
printf("Res: %d, error: %s\n", res, strerror(errno));
|
|
||||||
#endif
|
|
||||||
if (res) {
|
if (res) {
|
||||||
switch (errno) {
|
switch (errno) {
|
||||||
case EBUSY:
|
case EBUSY:
|
||||||
@@ -5503,28 +5500,22 @@ static void *ss_thread(void *data)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (p->sig == SIG_FGC_CAMA)
|
if (p->sig == SIG_FGC_CAMA) {
|
||||||
{
|
|
||||||
char anibuf[100];
|
char anibuf[100];
|
||||||
|
|
||||||
if (ast_safe_sleep(chan,1000) == -1)
|
if (ast_safe_sleep(chan,1000) == -1) {
|
||||||
{
|
|
||||||
ast_hangup(chan);
|
ast_hangup(chan);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
zt_set_hook(p->subs[SUB_REAL].zfd, ZT_OFFHOOK);
|
zt_set_hook(p->subs[SUB_REAL].zfd, ZT_OFFHOOK);
|
||||||
ast_dsp_digitmode(p->dsp,DSP_DIGITMODE_MF | p->dtmfrela\
|
ast_dsp_digitmode(p->dsp,DSP_DIGITMODE_MF | p->dtmfrelax);
|
||||||
x);
|
|
||||||
res = my_getsigstr(chan, anibuf, "#", 10000);
|
res = my_getsigstr(chan, anibuf, "#", 10000);
|
||||||
if ((res > 0) && (strlen(anibuf) > 2))
|
if ((res > 0) && (strlen(anibuf) > 2)) {
|
||||||
{
|
if (anibuf[strlen(anibuf) - 1] == '#')
|
||||||
if (anibuf[strlen(anibuf) - 1] == '#')
|
anibuf[strlen(anibuf) - 1] = 0;
|
||||||
anibuf[strlen(anibuf) - 1] = 0;
|
ast_set_callerid(chan, anibuf + 2, NULL, anibuf + 2);
|
||||||
ast_set_callerid(chan, anibuf + 2, NULL, anibuf + 2);
|
}
|
||||||
printf("@@@@@ set ani to %s\n",anibuf + 2);
|
ast_dsp_digitmode(p->dsp,DSP_DIGITMODE_DTMF | p->dtmfrelax);
|
||||||
}
|
|
||||||
ast_dsp_digitmode(p->dsp,DSP_DIGITMODE_DTMF | p->dtmfre\
|
|
||||||
lax);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ast_copy_string(exten, dtmfbuf, sizeof(exten));
|
ast_copy_string(exten, dtmfbuf, sizeof(exten));
|
||||||
@@ -5584,7 +5575,6 @@ lax);
|
|||||||
}
|
}
|
||||||
if (s1) ast_copy_string(exten, s1, sizeof(exten));
|
if (s1) ast_copy_string(exten, s1, sizeof(exten));
|
||||||
else ast_copy_string(exten, "911", sizeof(exten));
|
else ast_copy_string(exten, "911", sizeof(exten));
|
||||||
printf("E911/FGC CAMA: exten: %s, ANI: %s\n",exten, chan->cid.cid_ani);
|
|
||||||
} else
|
} else
|
||||||
ast_log(LOG_WARNING, "Got a non-E911/FGC CAMA input on channel %d. Assuming E&M Wink instead\n", p->channel);
|
ast_log(LOG_WARNING, "Got a non-E911/FGC CAMA input on channel %d. Assuming E&M Wink instead\n", p->channel);
|
||||||
}
|
}
|
||||||
@@ -6478,9 +6468,6 @@ static int handle_init_event(struct zt_pvt *i, int event)
|
|||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
ast_log(LOG_WARNING, "Unable to create channel\n");
|
ast_log(LOG_WARNING, "Unable to create channel\n");
|
||||||
#if 0
|
|
||||||
printf("Created thread %ld detached in switch\n", threadid);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case SIG_FXSLS:
|
case SIG_FXSLS:
|
||||||
@@ -6514,9 +6501,6 @@ static int handle_init_event(struct zt_pvt *i, int event)
|
|||||||
} else if (!chan) {
|
} else if (!chan) {
|
||||||
ast_log(LOG_WARNING, "Cannot allocate new structure on channel %d\n", i->channel);
|
ast_log(LOG_WARNING, "Cannot allocate new structure on channel %d\n", i->channel);
|
||||||
}
|
}
|
||||||
#if 0
|
|
||||||
printf("Created thread %ld detached in switch(2)\n", threadid);
|
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ast_log(LOG_WARNING, "Don't know how to handle ring/answer with signalling %s on channel %d\n", sig2str(i->sig), i->channel);
|
ast_log(LOG_WARNING, "Don't know how to handle ring/answer with signalling %s on channel %d\n", sig2str(i->sig), i->channel);
|
||||||
@@ -6696,14 +6680,8 @@ static void *do_monitor(void *data)
|
|||||||
if (!found && ((i == last) || ((i == iflist) && !last))) {
|
if (!found && ((i == last) || ((i == iflist) && !last))) {
|
||||||
last = i;
|
last = i;
|
||||||
if (last) {
|
if (last) {
|
||||||
#if 0
|
|
||||||
printf("Checking channel %d\n", last->channel);
|
|
||||||
#endif
|
|
||||||
if (!last->cidspill && !last->owner && !ast_strlen_zero(last->mailbox) && (thispass - last->onhooktime > 3) &&
|
if (!last->cidspill && !last->owner && !ast_strlen_zero(last->mailbox) && (thispass - last->onhooktime > 3) &&
|
||||||
(last->sig & __ZT_SIG_FXO)) {
|
(last->sig & __ZT_SIG_FXO)) {
|
||||||
#if 0
|
|
||||||
printf("Channel %d has mailbox %s\n", last->channel, last->mailbox);
|
|
||||||
#endif
|
|
||||||
res = ast_app_has_voicemail(last->mailbox, NULL);
|
res = ast_app_has_voicemail(last->mailbox, NULL);
|
||||||
if (last->msgstate != res) {
|
if (last->msgstate != res) {
|
||||||
int x;
|
int x;
|
||||||
@@ -6718,9 +6696,6 @@ static void *do_monitor(void *data)
|
|||||||
ioctl(last->subs[SUB_REAL].zfd, ZT_ONHOOKTRANSFER, &x);
|
ioctl(last->subs[SUB_REAL].zfd, ZT_ONHOOKTRANSFER, &x);
|
||||||
last->cidlen = vmwi_generate(last->cidspill, res, 1, AST_LAW(last));
|
last->cidlen = vmwi_generate(last->cidspill, res, 1, AST_LAW(last));
|
||||||
last->cidpos = 0;
|
last->cidpos = 0;
|
||||||
#if 0
|
|
||||||
printf("Made %d bytes of message waiting for %d\n", last->cidlen, res);
|
|
||||||
#endif
|
|
||||||
last->msgstate = res;
|
last->msgstate = res;
|
||||||
last->onhooktime = thispass;
|
last->onhooktime = thispass;
|
||||||
}
|
}
|
||||||
@@ -6848,9 +6823,6 @@ static int restart_monitor(void)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if 0
|
|
||||||
printf("Created thread %ld detached in restart monitor\n", monitor_thread);
|
|
||||||
#endif
|
|
||||||
ast_mutex_unlock(&monlock);
|
ast_mutex_unlock(&monlock);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -7976,9 +7948,6 @@ static void *do_idle_thread(void *vchan)
|
|||||||
ast_frfree(f);
|
ast_frfree(f);
|
||||||
ms = newms;
|
ms = newms;
|
||||||
}
|
}
|
||||||
#if 0
|
|
||||||
printf("Hanging up '%s'\n", chan->name);
|
|
||||||
#endif
|
|
||||||
/* Hangup the channel since nothing happend */
|
/* Hangup the channel since nothing happend */
|
||||||
ast_hangup(chan);
|
ast_hangup(chan);
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -8250,12 +8219,6 @@ static void *pri_dchannel(void *vpri)
|
|||||||
} else if (pri->pvts[x] && pri->pvts[x]->owner && pri->pvts[x]->isidlecall)
|
} else if (pri->pvts[x] && pri->pvts[x]->owner && pri->pvts[x]->isidlecall)
|
||||||
activeidles++;
|
activeidles++;
|
||||||
}
|
}
|
||||||
#if 0
|
|
||||||
printf("nextidle: %d, haveidles: %d, minunsed: %d\n",
|
|
||||||
nextidle, haveidles, minunused);
|
|
||||||
printf("nextidle: %d, haveidles: %d, ms: %ld, minunsed: %d\n",
|
|
||||||
nextidle, haveidles, ast_tvdiff_ms(ast_tvnow(), lastidle), minunused);
|
|
||||||
#endif
|
|
||||||
if (nextidle > -1) {
|
if (nextidle > -1) {
|
||||||
if (ast_tvdiff_ms(ast_tvnow(), lastidle) > 1000) {
|
if (ast_tvdiff_ms(ast_tvnow(), lastidle) > 1000) {
|
||||||
/* Don't create a new idle call more than once per second */
|
/* Don't create a new idle call more than once per second */
|
||||||
@@ -9893,7 +9856,7 @@ static int zap_show_status(int fd, int argc, char *argv[]) {
|
|||||||
|
|
||||||
ctl = open("/dev/zap/ctl", O_RDWR);
|
ctl = open("/dev/zap/ctl", O_RDWR);
|
||||||
if (ctl < 0) {
|
if (ctl < 0) {
|
||||||
fprintf(stderr, "Unable to open /dev/zap/ctl: %s\n", strerror(errno));
|
ast_log(LOG_WARNING, "Unable to open /dev/zap/ctl: %s\n", strerror(errno));
|
||||||
ast_cli(fd, "No Zaptel interface found.\n");
|
ast_cli(fd, "No Zaptel interface found.\n");
|
||||||
return RESULT_FAILURE;
|
return RESULT_FAILURE;
|
||||||
}
|
}
|
||||||
|
10
enum.c
10
enum.c
@@ -227,12 +227,6 @@ static int parse_naptr(char *dst, int dstsize, char *tech, int techsize, unsigne
|
|||||||
subst = delim2 + 1;
|
subst = delim2 + 1;
|
||||||
regexp[regexp_len-1] = 0;
|
regexp[regexp_len-1] = 0;
|
||||||
|
|
||||||
#if 0
|
|
||||||
printf("Pattern: %s\n", pattern);
|
|
||||||
printf("Subst: %s\n", subst);
|
|
||||||
printf("Input: %s\n", naptrinput);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* now do the regex wizardry.
|
* now do the regex wizardry.
|
||||||
*/
|
*/
|
||||||
@@ -327,9 +321,6 @@ struct enum_context {
|
|||||||
static int txt_callback(void *context, unsigned char *answer, int len, unsigned char *fullanswer)
|
static int txt_callback(void *context, unsigned char *answer, int len, unsigned char *fullanswer)
|
||||||
{
|
{
|
||||||
struct enum_context *c = (struct enum_context *)context;
|
struct enum_context *c = (struct enum_context *)context;
|
||||||
#if 0
|
|
||||||
printf("ENUMTXT Called\n");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (answer == NULL) {
|
if (answer == NULL) {
|
||||||
c->txt = NULL;
|
c->txt = NULL;
|
||||||
@@ -378,7 +369,6 @@ static int enum_callback(void *context, unsigned char *answer, int len, unsigned
|
|||||||
if ((p = ast_realloc(c->naptr_rrs, sizeof(*c->naptr_rrs) * (c->naptr_rrs_count + 1)))) {
|
if ((p = ast_realloc(c->naptr_rrs, sizeof(*c->naptr_rrs) * (c->naptr_rrs_count + 1)))) {
|
||||||
c->naptr_rrs = p;
|
c->naptr_rrs = p;
|
||||||
memcpy(&c->naptr_rrs[c->naptr_rrs_count].naptr, answer, sizeof(c->naptr_rrs->naptr));
|
memcpy(&c->naptr_rrs[c->naptr_rrs_count].naptr, answer, sizeof(c->naptr_rrs->naptr));
|
||||||
/* printf("order=%d, pref=%d\n", ntohs(c->naptr_rrs[c->naptr_rrs_count].naptr.order), ntohs(c->naptr_rrs[c->naptr_rrs_count].naptr.pref)); */
|
|
||||||
c->naptr_rrs[c->naptr_rrs_count].result = strdup(c->dst);
|
c->naptr_rrs[c->naptr_rrs_count].result = strdup(c->dst);
|
||||||
c->naptr_rrs[c->naptr_rrs_count].tech = strdup(c->tech);
|
c->naptr_rrs[c->naptr_rrs_count].tech = strdup(c->tech);
|
||||||
c->naptr_rrs[c->naptr_rrs_count].sort_pos = c->naptr_rrs_count;
|
c->naptr_rrs[c->naptr_rrs_count].sort_pos = c->naptr_rrs_count;
|
||||||
|
@@ -1376,10 +1376,8 @@ static void pbx_load_config(const char *config_file)
|
|||||||
|
|
||||||
for (v = ast_variable_browse(cfg, cxt); v; v = v->next) {
|
for (v = ast_variable_browse(cfg, cxt); v; v = v->next) {
|
||||||
if (!strcasecmp(v->name, "exten")) {
|
if (!strcasecmp(v->name, "exten")) {
|
||||||
char *tc = strdup(v->value);
|
char *tc = ast_strdup(v->value);
|
||||||
if (tc == NULL)
|
if (tc) {
|
||||||
fprintf(stderr,"Error strdup returned NULL in %s\n",__PRETTY_FUNCTION__);
|
|
||||||
else {
|
|
||||||
int ipri = -2;
|
int ipri = -2;
|
||||||
char realext[256]="";
|
char realext[256]="";
|
||||||
char *plus, *firstp, *firstc;
|
char *plus, *firstp, *firstc;
|
||||||
|
Reference in New Issue
Block a user