packages feed

simple-sendfile 0.2.20 → 0.2.21

raw patch · 3 files changed

+4/−4 lines, 3 files

Files

Network/Sendfile/BSD.hsc view
@@ -43,7 +43,7 @@ sendfile sock path range hook = bracket setup teardown $ \fd ->     sendfileFd sock fd range hook   where-    setup = openFd path ReadOnly Nothing defaultFileFlags+    setup = openFd path ReadOnly Nothing defaultFileFlags{nonBlock=True}     teardown = closeFd  -- |@@ -104,7 +104,7 @@ sendfileWithHeader sock path range hook hdr =     bracket setup teardown $ \fd -> sendfileFdWithHeader sock fd range hook hdr   where-    setup = openFd path ReadOnly Nothing defaultFileFlags+    setup = openFd path ReadOnly Nothing defaultFileFlags{nonBlock=True}     teardown = closeFd  -- |
Network/Sendfile/Linux.hsc view
@@ -62,7 +62,7 @@ sendfile sock path range hook = bracket setup teardown $ \fd ->     sendfileFd sock fd range hook   where-    setup = openFd path ReadOnly Nothing defaultFileFlags+    setup = openFd path ReadOnly Nothing defaultFileFlags{nonBlock=True}     teardown = closeFd  -- |
simple-sendfile.cabal view
@@ -1,5 +1,5 @@ Name:                   simple-sendfile-Version:                0.2.20+Version:                0.2.21 Author:                 Kazu Yamamoto <kazu@iij.ad.jp> Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp> License:                BSD3