From e8a060f7349ac21d0bbb92ca2bccc847710d7294 Mon Sep 17 00:00:00 2001 From: russell Date: Tue, 18 Sep 2007 22:46:05 +0000 Subject: 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 --- include/asterisk/agi.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') 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 { -- cgit v1.2.3