]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/Config.hs
Many improvements
[Lucu.git] / Network / HTTP / Lucu / Config.hs
index 919e1344a8950ad4f445a07cf3bc041f1d3c7fc6..4932a142ca095a62df2a26fe83394f877aa1980c 100644 (file)
@@ -5,15 +5,23 @@ module Network.HTTP.Lucu.Config
     where
 
 import Network
+import Network.BSD
+import System.IO.Unsafe
 
 data Config = Config {
-      cnfServerPort      :: PortID
-    , cnfMaxEntityLength :: Integer
-    , cnfMaxURILength    :: Int
+      cnfServerSoftware   :: String
+    , cnfServerHost       :: HostName
+    , cnfServerPort       :: PortID
+    , cnfMaxPipelineDepth :: Int
+    , cnfMaxEntityLength  :: Int
+    , cnfMaxURILength     :: Int
     }
 
 defaultConfig = Config {
-                  cnfServerPort      = Service "http"
-                , cnfMaxEntityLength = 16 * 1024 * 1024 -- 16 MiB
-                , cnfMaxURILength    = 4 * 1024         -- 4 KiB
+                  cnfServerSoftware   = "Lucu/1.0"
+                , cnfServerHost       = unsafePerformIO getHostName
+                , cnfServerPort       = Service "http"
+                , cnfMaxPipelineDepth = 100
+                , cnfMaxEntityLength  = 16 * 1024 * 1024 -- 16 MiB
+                , cnfMaxURILength     = 4 * 1024         -- 4 KiB
                 }
\ No newline at end of file