aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/agi.h
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-30 19:18:24 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-30 19:18:24 +0000
commita594443c3856860ca14d86e56f06f2cb087acd90 (patch)
tree8d237c14037a655d642a3c63dd7a3400067516e6 /include/asterisk/agi.h
parent2619bdce60f84002571a609cefb4238dd5f43c5f (diff)
Merged revisions 77788 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r77788 | russell | 2007-07-30 14:13:31 -0500 (Mon, 30 Jul 2007) | 10 lines (closes issue #10279) Reported by: seanbright Patches: res_agi.carefulwrite.1.4.07252007.patch uploaded by seanbright (license 71) res_agi.carefulwrite.trunk.07252007.patch uploaded by seanbright (license 71) Allow the "agi_network: yes" line to be printed out in the AGI debug output. Also, allow partial writes to be handled when writing out this line just like it is for all of the others. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@77789 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/agi.h')
-rw-r--r--include/asterisk/agi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/agi.h b/include/asterisk/agi.h
index 584ddfe03..4be6565dc 100644
--- a/include/asterisk/agi.h
+++ b/include/asterisk/agi.h
@@ -51,7 +51,7 @@ typedef struct agi_command {
AST_LIST_ENTRY(agi_command) list;
} agi_command;
-void ast_agi_fdprintf(int fd, char *fmt, ...);
+int ast_agi_fdprintf(int fd, char *fmt, ...);
int ast_agi_register(struct ast_module *mod, agi_command *cmd);
int ast_agi_unregister(struct ast_module *mod, agi_command *cmd);
void ast_agi_register_multiple(struct ast_module *mod, agi_command *cmd, int len);