-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Cross platform library for the sendfile system call -- -- Cross platform library for the sendfile system call. This library -- tries to call minimum system calls which are the bottleneck of web -- servers. @package simple-sendfile @version 0.0.2 -- | Cross platform library for the sendfile system call. This library -- tries to call minimum system calls which are the bottleneck of web -- servers. module Network.Sendfile -- | Simple binding for sendfile() of Linux. Used system calls: -- -- -- -- If the size of the file is unknown when sending the entire file, -- specifying PartOfFile is much faster. sendfile :: Socket -> FilePath -> FileRange -> IO () -- | File range for sendfile. data FileRange EntireFile :: FileRange PartOfFile :: Integer -> Integer -> FileRange rangeOffset :: FileRange -> Integer rangeLength :: FileRange -> Integer