summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-09-18 22:46:05 +0000
committerRussell Bryant <russell@russellbryant.com>2007-09-18 22:46:05 +0000
commit0de872da8d7d7c987a73415e0b1bc0466823b072 (patch)
tree3fa0a137d2decc2d2ea353c01457b73c19390ee4 /include
parentc7a9ec1691ebce1ff4786e74285ceea62b6782e8 (diff)
Merged revisions 82929 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r82929 | russell | 2007-09-18 17:42:27 -0500 (Tue, 18 Sep 2007) | 11 lines Add a new patch to handle interrupting the fgets() call when using FastAGI. This version of the patch maintains the original behavior of the code when not using FastAGI. (closes issue #10553) Reported by: juggie Patches: res_agi_fgets-4.patch uploaded by juggie (license 24) res_agi_fgets_1.4svn.patch uploaded by juggie (license 24) Slight mods by me Tested by: juggie, festr ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82931 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/agi.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asterisk/agi.h b/include/asterisk/agi.h
index 4be6565dc..25bad6742 100644
--- a/include/asterisk/agi.h
+++ b/include/asterisk/agi.h
@@ -31,6 +31,7 @@ typedef struct agi_state {
int fd; /* FD for general output */
int audio; /* FD for audio output */
int ctrl; /* FD for input control */
+ unsigned int fast:1; /* flag for fast agi or not */
} AGI;
typedef struct agi_command {