aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xinclude/asterisk/adsi.h4
-rwxr-xr-xres/res_adsi.c44
-rwxr-xr-xres/res_features.c4
3 files changed, 26 insertions, 26 deletions
diff --git a/include/asterisk/adsi.h b/include/asterisk/adsi.h
index 26c2795b3..b56b8db2f 100755
--- a/include/asterisk/adsi.h
+++ b/include/asterisk/adsi.h
@@ -120,7 +120,7 @@
*/
extern int adsi_channel_init(struct ast_channel *chan);
-extern int adsi_begin_download(struct ast_channel *chan, char *service, char *fdn, char *sec, int version);
+extern int adsi_begin_download(struct ast_channel *chan, unsigned char *service, unsigned char *fdn, unsigned char *sec, int version);
extern int adsi_end_download(struct ast_channel *chan);
@@ -145,7 +145,7 @@ extern int adsi_channel_restore(struct ast_channel *chan);
* Return 0 on success (or adsi unavailable) and -1 on hangup
*
*/
-extern int adsi_print(struct ast_channel *chan, char **lines, int *align, int voice);
+extern int adsi_print(struct ast_channel *chan, unsigned char **lines, int *align, int voice);
/*! Check if scripts for a given app are already loaded. Version may be -1 */
/* if any version is okay, or 0-255 for a specific version. */
diff --git a/res/res_adsi.c b/res/res_adsi.c
index fb11c368e..99c567677 100755
--- a/res/res_adsi.c
+++ b/res/res_adsi.c
@@ -56,7 +56,7 @@ static char speeddial[ADSI_MAX_SPEED_DIAL][3][20];
static int alignment = 0;
-static int adsi_generate(unsigned char *buf, int msgtype, char *msg, int msglen, int msgnum, int last, int codec)
+static int adsi_generate(unsigned char *buf, int msgtype, unsigned char *msg, int msglen, int msgnum, int last, int codec)
{
int sum;
int x;
@@ -306,7 +306,7 @@ static int __adsi_transmit_messages(struct ast_channel *chan, unsigned char **ms
}
-int adsi_begin_download(struct ast_channel *chan, char *service, char *fdn, char *sec, int version)
+int adsi_begin_download(struct ast_channel *chan, unsigned char *service, unsigned char *fdn, unsigned char *sec, int version)
{
int bytes;
unsigned char buf[256];
@@ -592,7 +592,7 @@ int adsi_read_encoded_dtmf(struct ast_channel *chan, unsigned char *buf, int max
int adsi_get_cpeid(struct ast_channel *chan, unsigned char *cpeid, int voice)
{
- char buf[256];
+ unsigned char buf[256];
int bytes = 0;
int res;
bytes += adsi_data_mode(buf);
@@ -624,7 +624,7 @@ int adsi_get_cpeid(struct ast_channel *chan, unsigned char *cpeid, int voice)
int adsi_get_cpeinfo(struct ast_channel *chan, int *width, int *height, int *buttons, int voice)
{
- char buf[256];
+ unsigned char buf[256];
int bytes = 0;
int res;
bytes += adsi_data_mode(buf);
@@ -636,46 +636,46 @@ int adsi_get_cpeinfo(struct ast_channel *chan, int *width, int *height, int *but
/* Get width */
memset(buf, 0, sizeof(buf));
- res = ast_readstring(chan, buf, 2, 1000, 500, "");
+ res = ast_readstring(chan, (char *)buf, 2, 1000, 500, "");
if (res < 0)
return res;
- if (strlen(buf) != 2) {
+ if (strlen((char *)buf) != 2) {
ast_log(LOG_WARNING, "Got %d bytes of width, expecting 2\n", res);
res = 0;
} else {
res = 1;
}
if (width)
- *width = atoi(buf);
+ *width = atoi((char *)buf);
/* Get height */
memset(buf, 0, sizeof(buf));
if (res) {
- res = ast_readstring(chan, buf, 2, 1000, 500, "");
+ res = ast_readstring(chan, (char *)buf, 2, 1000, 500, "");
if (res < 0)
return res;
- if (strlen(buf) != 2) {
+ if (strlen((char *)buf) != 2) {
ast_log(LOG_WARNING, "Got %d bytes of height, expecting 2\n", res);
res = 0;
} else {
res = 1;
}
if (height)
- *height= atoi(buf);
+ *height= atoi((char *)buf);
}
/* Get buttons */
memset(buf, 0, sizeof(buf));
if (res) {
- res = ast_readstring(chan, buf, 1, 1000, 500, "");
+ res = ast_readstring(chan, (char *)buf, 1, 1000, 500, "");
if (res < 0)
return res;
- if (strlen(buf) != 1) {
+ if (strlen((char *)buf) != 1) {
ast_log(LOG_WARNING, "Got %d bytes of buttons, expecting 1\n", res);
res = 0;
} else {
res = 1;
}
if (buttons)
- *buttons = atoi(buf);
+ *buttons = atoi((char *)buf);
}
if (voice) {
bytes = 0;
@@ -846,7 +846,7 @@ int adsi_input_format(unsigned char *buf, int num, int dir, int wrap, unsigned c
{
int bytes = 0;
- if (!strlen(format1))
+ if (!strlen((char *)format1))
return -1;
buf[bytes++] = ADSI_INPUT_FORMAT;
@@ -854,7 +854,7 @@ int adsi_input_format(unsigned char *buf, int num, int dir, int wrap, unsigned c
buf[bytes++] = ((dir & 1) << 7) | ((wrap & 1) << 6) | (num & 0x7);
bytes += ccopy(buf + bytes, format1, 20);
buf[bytes++] = 0xff;
- if (format2 && strlen(format2)) {
+ if (format2 && strlen((char *)format2)) {
bytes += ccopy(buf + bytes, format2, 20);
}
buf[1] = bytes - 2;
@@ -909,7 +909,7 @@ static int speeds = 0;
int adsi_channel_restore(struct ast_channel *chan)
{
- char dsp[256];
+ unsigned char dsp[256];
int bytes;
int x;
unsigned char keyd[6];
@@ -934,14 +934,14 @@ int adsi_channel_restore(struct ast_channel *chan)
}
-int adsi_print(struct ast_channel *chan, char **lines, int *aligns, int voice)
+int adsi_print(struct ast_channel *chan, unsigned char **lines, int *aligns, int voice)
{
- char buf[4096];
+ unsigned char buf[4096];
int bytes=0;
int res;
int x;
for(x=0;lines[x];x++)
- bytes += adsi_display(buf + bytes, ADSI_INFO_PAGE, x+1, aligns[x],0, lines[x], "");
+ bytes += adsi_display(buf + bytes, ADSI_INFO_PAGE, x+1, aligns[x], 0, lines[x], (unsigned char *)"");
bytes += adsi_set_line(buf + bytes, ADSI_INFO_PAGE, 1);
if (voice) {
bytes += adsi_voice_mode(buf + bytes, 0);
@@ -956,7 +956,7 @@ int adsi_print(struct ast_channel *chan, char **lines, int *aligns, int voice)
int adsi_load_session(struct ast_channel *chan, unsigned char *app, int ver, int data)
{
- char dsp[256];
+ unsigned char dsp[256];
int bytes;
int res;
char resp[2];
@@ -965,7 +965,7 @@ int adsi_load_session(struct ast_channel *chan, unsigned char *app, int ver, int
/* Connect to session */
bytes = 0;
- bytes += adsi_connect_session(dsp + bytes, app,ver);
+ bytes += adsi_connect_session(dsp + bytes, app, ver);
if (data)
bytes += adsi_data_mode(dsp + bytes);
@@ -997,7 +997,7 @@ int adsi_load_session(struct ast_channel *chan, unsigned char *app, int ver, int
int adsi_unload_session(struct ast_channel *chan)
{
- char dsp[256];
+ unsigned char dsp[256];
int bytes;
memset(dsp, 0, sizeof(dsp));
diff --git a/res/res_features.c b/res/res_features.c
index 1b5856a10..c4281ddc8 100755
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -248,10 +248,10 @@ static int adsi_announce_park(struct ast_channel *chan, int parkingnum)
int res;
int justify[5] = {ADSI_JUST_CENT, ADSI_JUST_CENT, ADSI_JUST_CENT, ADSI_JUST_CENT};
char tmp[256] = "";
- char *message[5] = {NULL, NULL, NULL, NULL, NULL};
+ unsigned char *message[5] = {NULL, NULL, NULL, NULL, NULL};
snprintf(tmp, sizeof(tmp), "Parked on %d", parkingnum);
- message[0] = tmp;
+ message[0] = (unsigned char *)tmp;
res = adsi_load_session(chan, NULL, 0, 1);
if (res == -1) {
return res;