-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Wai handler to fastcgi -- -- Wai handler to fastcgi @package wai-handler-fastcgi @version 0.2.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 :: String -> Application -> IO () runFork :: Maybe String -> (IO () -> IO a) -> Int -> Application -> IO ()