search for: local_user_add

Displaying 9 results from an estimated 9 matches for "local_user_add".

2006 Dec 06
1
0002475: [patch] Allow app_directory to work with REALTIME
Hi All, I'm running 1.2.9.1 stable. I'm wondering has this patch been applied to stable release or is it still only in CVS. Will this file patch apply correctly to 1.2.9.1 stable? Which file do I patch? I'm guessing app_directory_realtime_1.6.1.patch <http://bugs.digium.com/file_download.php?file_id=4915&type=bug> and config.h.patch
2007 Jan 25
1
Failing to compile chan_capi
...chan_capi.c: In function `capi_new': chan_capi.c:2069: error: too few arguments to function `ast_channel_alloc' chan_capi.c:2083: error: structure has no member named `type' chan_capi.c: In function `pbx_capicommand_exec': chan_capi.c:4613: warning: implicit declaration of function `LOCAL_USER_ADD' chan_capi.c:4628: warning: implicit declaration of function `LOCAL_USER_REMOVE' chan_capi.c: At top level: chan_capi.c:5275: error: unknown field `send_digit' specified in initializer chan_capi.c:5275: warning: initialization from incompatible pointer type make: *** [chan_capi.o] Erro...
2005 Jun 20
2
app_valetparking.c
Since www.bkw.org seems not to exist anymore (getting response from some hosting provider), does anyone happend to have a copy of app_valetparking.c from www.bkw.org - the one that should work with * stable 1.0.X ? If so please contact me. One that can be downloaded from www.loligo.com dosn't compile with 1.0.X, and SuperValletParking (www.asterlink.com/svp/) seems to be for * HEAD
2005 Jun 20
1
Re: app_valetparking.c for * STABLE (1.0.X)
Nope ! This is the one that tries to include PRE 1.0.X header file <parking.h>. It cannot compile on * 1.0.X (I have tried also to include <features.h> instead of <parking.h> (as far as I know features.h is successor to parking.h), but still without results). Thanks anyway. Nenad > > Try this > >> Since www.bkw.org seems not to exist anymore (getting
2006 Oct 13
0
Asterisk 1.4 / install app_bundle problems
...ts.c: In function `waitfordigits_exec': app_waitfordigits.c:87: warning: initialization discards qualifiers from pointer target type app_waitfordigits.c:88: warning: initialization discards qualifiers from pointer target type app_waitfordigits.c:99: warning: implicit declaration of function `LOCAL_USER_ADD' app_waitfordigits.c:137: warning: implicit declaration of function `LOCAL_USER_REMOVE' app_waitfordigits.c: In function `unload_module': app_waitfordigits.c:196: error: `STANDARD_HANGUP_LOCALUSERS' undeclared (first use in this function) app_waitfordigits.c:196: error: (Each unde...
2007 Jan 29
0
Rxfax and txfax
...39; app_rxfax.c:148: error: 't30_stats_t' has no member named 'column_resolution' app_rxfax.c:148: error: 't30_stats_t' has no member named 'row_resolution' app_rxfax.c: In function 'rxfax_exec': app_rxfax.c:247: warning: implicit declaration of function 'LOCAL_USER_ADD' app_rxfax.c:281: warning: passing argument 1 of 'fax_init' from incompatible pointer type app_rxfax.c:281: error: too many arguments to function 'fax_init' app_rxfax.c:284: warning: assignment discards qualifiers from pointer target type app_rxfax.c:287: warning: assignment dis...
2006 Nov 29
1
Getting app_cepstral to work with Asterisk 1.4.0-beta3
...pe or storage class app_cepstral.c:44: warning: type defaults to `int' in declaration of `LOCAL_USER_DECL' app_cepstral.c:44: warning: data definition has no type or storage class app_cepstral.c: In function `cepstral_exec': app_cepstral.c:225: warning: implicit declaration of function `LOCAL_USER_ADD' app_cepstral.c:233: warning: implicit declaration of function `LOCAL_USER_REMOVE' app_cepstral.c: At top level: app_cepstral.c:252: warning: no previous prototype for 'unload_module' app_cepstral.c: In function `unload_module': app_cepstral.c:253: error: `STANDARD_HANGUP_LOCALU...
2005 Jan 22
0
chan_capi patch: app_capiFax modifications
...localuser *u; char *vdata, *fname, *stationID; struct ast_capi_pvt *i = chan->pvt->pvt; if (!data) { /* no data implies no filename or anything is present */ ast_log(LOG_WARNING, "capiAnswerFax requires an argument (filename)\n"); return -1; } vdata = ast_strdupa(data); LOCAL_USER_ADD(u); fname = vdata; if (fname) { stationID = strchr(vdata, '|'); if (stationID) { *stationID='\0'; stationID++; } else stationID = "00000000"; } else stationID = "00000000"; if (strcasecmp("CAPI", chan->type) == 0) { i->fFax = f...
2005 Aug 25
2
Custom Application For Asterisk
...s = 0; int res_type; int tdsret; int rowtype; int computeid; int i; int sucs = 0; struct localuser *u; char mysqlcmd[1024]; char myretnumber[6]; const void *value; char resulttype[4]; if (!data) { ast_log(LOG_WARNING, "abcd requires an argument (number)\n"); return -1; } LOCAL_USER_ADD(u); ast_mutex_lock(&tdslock); memset(mysqlcmd, 0, sizeof(mysqlcmd)); sprintf(mysqlcmd, "Select MyFunction(\'%s\') As result",((char *) data)); do { if (!connected) { if (mssql_connect()) ast_log(LOG_ERROR, "Failed to reconnect to SQL database.\n"); el...