-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Wai handler to fastcgi
--
-- API docs and the README are available at
-- http://www.stackage.org/package/wai-handler-fastcgi.
@package wai-handler-fastcgi
@version 3.0.0.2
-- | 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 ()