]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/Config.hs
examples/HelloWorld.hs fully works now.
[Lucu.git] / Network / HTTP / Lucu / Config.hs
index 5a241b77b07d262e93fe5a9be70bfc61fb4e0ffa..47279806117e7b72ef3b095925eb195e4ce66dc4 100644 (file)
@@ -62,12 +62,6 @@ data Config = Config {
     -- guarantee that this value always constrains all the requests.
     , cnfMaxEntityLength ∷ !Int
 
-    -- |The maximum length of chunk to output. This value is used by
-    -- 'Network.HTTP.Lucu.Resource.output' and such like to limit the
-    -- chunk length so you can safely output an infinite string (like
-    -- a lazy stream of \/dev\/random) using those actions.
-    , cnfMaxOutputChunkLength ∷ !Int
-
     -- | Whether to dump too late abortion to the stderr or not. See
     -- 'Network.HTTP.Lucu.Abortion.abort'.
     , cnfDumpTooLateAbortionToStderr ∷ !Bool
@@ -111,7 +105,6 @@ defaultConfig = Config {
                 , cnfSSLConfig                   = Nothing
                 , cnfMaxPipelineDepth            = 100
                 , cnfMaxEntityLength             = 16 * 1024 * 1024 -- 16 MiB
-                , cnfMaxOutputChunkLength        = 5 * 1024 * 1024  -- 5 MiB
                 , cnfDumpTooLateAbortionToStderr = True
                 , cnfExtToMIMEType               = defaultExtensionMap
                 }