From 873989db9165e388634e3750e07835d580f4c0fb Mon Sep 17 00:00:00 2001
From: Tilghman Lesher <tilghman@meg.abyt.es>
Date: Tue, 19 Jan 2010 22:41:36 +0000
Subject: [PATCH] Enable SendText to send strings in encoded format.

See http://lists.digium.com/pipermail/asterisk-users/2010-January/243462.html


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@241364 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_sendtext.c      | 21 ++++++++++-----------
 doc/janitor-projects.txt |  2 ++
 2 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/apps/app_sendtext.c b/apps/app_sendtext.c
index 100358ecff..99dbeea7e6 100644
--- a/apps/app_sendtext.c
+++ b/apps/app_sendtext.c
@@ -74,22 +74,21 @@ static const char * const app = "SendText";
 
 static int sendtext_exec(struct ast_channel *chan, const char *data)
 {
-	int res = 0;
 	char *status = "UNSUPPORTED";
-	char *parse = NULL;
-	AST_DECLARE_APP_ARGS(args,
-		AST_APP_ARG(text);
-	);
+	struct ast_str *str;
 
 	/* NOT ast_strlen_zero, because some protocols (e.g. SIP) MUST be able to
 	 * send a zero-length message. */
 	if (!data) {
 		ast_log(LOG_WARNING, "SendText requires an argument (text)\n");
 		return -1;
-	} else
-		parse = ast_strdupa(data);
-	
-	AST_STANDARD_APP_ARGS(args, parse);
+	}
+
+	if (!(str = ast_str_alloca(strlen(data) + 1))) {
+		return -1;
+	}
+
+	ast_str_get_encoded_str(&str, -1, data);
 
 	ast_channel_lock(chan);
 	if (!chan->tech->send_text) {
@@ -100,9 +99,9 @@ static int sendtext_exec(struct ast_channel *chan, const char *data)
 	}
 	status = "FAILURE";
 	ast_channel_unlock(chan);
-	res = ast_sendtext(chan, args.text);
-	if (!res)
+	if (!ast_sendtext(chan, ast_str_buffer(str))) {
 		status = "SUCCESS";
+	}
 	pbx_builtin_setvar_helper(chan, "SENDTEXTSTATUS", status);
 	return 0;
 }
diff --git a/doc/janitor-projects.txt b/doc/janitor-projects.txt
index 30fe3b1851..772f035a9b 100644
--- a/doc/janitor-projects.txt
+++ b/doc/janitor-projects.txt
@@ -24,3 +24,5 @@
  -- Convert all usage of the signal(2) system API to the more portable sigaction(2) system API.
 
  -- Find options and arguments in Asterisk which specify a time period in seconds or milliseconds and convert them to use the new ast_app_parse_timelen() function.
+
+ -- Find applications and functions in Asterisk that would benefit from being able to encode control characters and extended ASCII and embed calls to ast_get_encoded_char, ast_get_encoded_str, and ast_str_get_encoded_str.
-- 
GitLab