]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/Config.hs
data/mime.types
[Lucu.git] / Network / HTTP / Lucu / Config.hs
index 2d37022d54072c6ec374d9aee909dfb765538f9c..999672f165c420a609b3e3c5e78146344e6cd6d1 100644 (file)
@@ -4,18 +4,31 @@ module Network.HTTP.Lucu.Config
     )
     where
 
-import Network
+import qualified Data.Map as M
+import           Data.Map (Map)
+import           Network
+import           Network.BSD
+import           Network.HTTP.Lucu.MIMEType
+import           System.IO.Unsafe
+
 
 data Config = Config {
-      cnfServerPort       :: PortID
+      cnfServerSoftware   :: String
+    , cnfServerHost       :: HostName
+    , cnfServerPort       :: PortID
     , cnfMaxPipelineDepth :: Int
-    , cnfMaxEntityLength  :: Integer
+    , cnfMaxEntityLength  :: Int
     , cnfMaxURILength     :: Int
+    , cnfExtToMIMEType    :: Map String MIMEType
     }
 
+
 defaultConfig = Config {
-                  cnfServerPort       = Service "http"
+                  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
+                , cnfExtToMIMEType    = undefined -- FIXME
+                }