http-client 0.2.2.2 → 0.2.2.3
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
Network/HTTP/Client/Connection.hs view
@@ -35,7 +35,7 @@ case S.breakByte charLF bs of (_, "") -> do let total' = total + S.length bs- when (total' > 1024) $ throwIO OverlongHeaders+ when (total' > 4096) $ throwIO OverlongHeaders bs' <- connectionRead conn when (S.null bs') $ throwIO IncompleteHeaders go bs' (front . (bs:)) total'
http-client.cabal view
@@ -1,5 +1,5 @@ name: http-client-version: 0.2.2.2+version: 0.2.2.3 synopsis: An HTTP client engine, intended as a base layer for more user-friendly packages. description: This codebase has been refactored from http-conduit. homepage: https://github.com/snoyberg/http-client