diff options
| author | Dmitry Stogov <dmitry@php.net> | 2007-03-28 15:39:22 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2007-03-28 15:39:22 +0000 |
| commit | 4a119f9a79b5db25ba41da8da8e4292c46aafa1f (patch) | |
| tree | acb47a56b9d402f26d337b2aaaf72ad369e7d514 /sapi/cgi/fastcgi.h | |
| parent | 1c36d38891253b556998db18cca6ac01781c9ba0 (diff) | |
| download | php-git-4a119f9a79b5db25ba41da8da8e4292c46aafa1f.tar.gz | |
Improved FastCGI SAPI to support external pipe and socket servers on win32
Diffstat (limited to 'sapi/cgi/fastcgi.h')
| -rw-r--r-- | sapi/cgi/fastcgi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sapi/cgi/fastcgi.h b/sapi/cgi/fastcgi.h index 940a9be55b..a2fede78c2 100644 --- a/sapi/cgi/fastcgi.h +++ b/sapi/cgi/fastcgi.h @@ -93,6 +93,9 @@ typedef struct _fcgi_end_request_rec { typedef struct _fcgi_request { int listen_socket; +#ifdef _WIN32 + int tcp; +#endif int fd; int id; int keep; |
