-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Wai handler to fastcgi -- -- Calls out to the libfcgi C library. @package wai-handler-fastcgi @version 1.2.0 -- | Interface for FastCGI http://fastcgi.com/, using the fcgiapp -- API. Totally ripped off by Michael Snoyman to work with Hack, then -- WAI. module Network.Wai.Handler.FastCGI -- | Handle FastCGI requests in an infinite loop. run :: Application -> IO () -- | Handle FastCGI requests in an infinite loop. For a server which -- supports the X-Sendfile header. runSendfile :: ByteString -> Application -> IO () runFork :: Maybe ByteString -> (IO () -> IO a) -> Int -> Application -> IO ()