Displaying 2 results from an estimated 2 matches for "pickup_ext".
Did you mean:
pickup_exec
2003 May 14
2
Trouble with *80, *82
Hi,
I'm having trouble dialling the codes for blacklist & un-hide caller ID
(*80 & *82) using a TDM400. I get reorder tone as soon as I dial *8, and
in fact I can pick up calls with just *8 rather than *8# when there is one
to be picked up.
Ideas?
Thanks,
brad
--
Brad Bergman
<bradley@bergman.ca>
2003 Jul 03
1
res parking patch
...16:06:12.000000000 +0200
+++ myasterisk/res/res_parking.c 2003-07-03 23:28:52.000000000 +0200
@@ -49,6 +49,7 @@
/* Extension you type to park the call */
static char parking_ext[AST_MAX_EXTENSION] = "700";
+static char parking_pick[AST_MAX_EXTENSION] = "750";
static char pickup_ext[AST_MAX_EXTENSION] = "*8";
@@ -507,7 +508,23 @@
park = atoi((char *)data);
ast_pthread_mutex_lock(&parking_lock);
pu = parkinglot;
- while(pu) {
+ if (park == atoi((char *)parking_pick)) {
+ ast_log(LOG_NOTICE,"Picking up the older parked call!\n");
+ while(pu)...