aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-18 22:46:05 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-18 22:46:05 +0000
commite8a060f7349ac21d0bbb92ca2bccc847710d7294 (patch)
tree3fa0a137d2decc2d2ea353c01457b73c19390ee4 /include
parentab51c0d7fad1957b36454533cd8e786ed66efa61 (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: http://svn.digium.com/svn/asterisk/trunk@82931 f38db490-d61c-443f-a65b-d21fe96a405b
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 {