aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-18 22:42:27 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-18 22:42:27 +0000
commit9b6b0fcaf68d28d87aaa8f2d2dccb52dc23228e4 (patch)
tree98951d3dbae55b1079e6f83f049775483596ce55 /include
parent1e7a1dd3b1ca67fe3270f78f58354e6a85b7da7a (diff)
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/branches/1.4@82929 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 5a0edc83f..5797176fe 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 {