 | fastcgi-3000.0.0: A Haskell library for writing FastCGI programs | Contents | Index |
|
| Network.FastCGI | | Portability | non-portable (uses FFI) | | Stability | experimental | | Maintainer | bjorn@bringert.net |
|
|
|
|
|
| Description |
| Interface for FastCGI http://fastcgi.com/, using the fcgiapp API.
|
|
| Synopsis |
|
|
|
| Documentation |
|
| runFastCGIorCGI :: CGI CGIResult -> IO () |
| Handle a single CGI request, or FastCGI requests in an infinite loop.
This function only returns normally if it was a CGI request.
This lets you use the same program
as either a FastCGI or CGI program, depending on what the server
treats it as.
|
|
| runOneFastCGIorCGI |
| :: CGI CGIResult | | | -> IO Bool | True if it was a FastCGI request,
False if CGI.
| | Handle a single FastCGI or CGI request. This lets you use the same program
as either a FastCGI or CGI program, depending on what the server
treats it as.
|
|
|
| runFastCGI :: CGI CGIResult -> IO () |
| Handle FastCGI requests in an infinite loop.
|
|
| runOneFastCGI :: CGI CGIResult -> IO () |
| Handle a single FastCGI request.
|
|
| module Network.CGI |
|
| Produced by Haddock version 0.8 |