]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/Config.hs
Many many changes
[Lucu.git] / Network / HTTP / Lucu / Config.hs
index 5a241b77b07d262e93fe5a9be70bfc61fb4e0ffa..cdeef3b435305ae8e76a5630f07d5fb8f884c162 100644 (file)
@@ -56,18 +56,12 @@ data Config = Config {
     , cnfMaxPipelineDepth ∷ !Int
 
     -- |The maximum length of request entity to accept in bytes. Note
-    -- that this is nothing but the default value which is used when
-    -- 'Network.HTTP.Lucu.Resource.input' and such like are applied to
-    -- 'Network.HTTP.Lucu.Resource.defaultLimit', so there is no
+    -- that this is nothing but a default value which is used when
+    -- 'Network.HTTP.Lucu.Resource.getForm' and such like are applied
+    -- to 'Network.HTTP.Lucu.Resource.defaultLimit', so there is no
     -- 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
                 }