summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CmdLine.hs8
-rw-r--r--TODO2
2 files changed, 1 insertions, 9 deletions
diff --git a/CmdLine.hs b/CmdLine.hs
index 067d726..34233d1 100644
--- a/CmdLine.hs
+++ b/CmdLine.hs
@@ -33,7 +33,6 @@ data Mode = Backup | Restore | UploadQueued | Server | Benchmark | Test
data ServerConfig = ServerConfig
{ serverPort :: Port
, serverAddress :: String
- , diskReserveMb :: Int
, monthsToFillHalfDisk :: Int
}
@@ -137,13 +136,6 @@ parse = CmdLine
<> help "Address for server to bind to. (Use \"*\" to bind to all addresses.)"
)
<*> option auto
- ( long "disk-reserve"
- <> metavar "N"
- <> value 256
- <> showDefault
- <> help "Server refuses to store objects if less than this much disk space (in megabytes) is free"
- )
- <*> option auto
( long "months-to-fill-half-disk"
<> metavar "N"
<> value 12
diff --git a/TODO b/TODO
index fdf4e0a..8bfb3f0 100644
--- a/TODO
+++ b/TODO
@@ -1,7 +1,7 @@
Soon:
* test client/server Proof Of Work
-* finish --months-to-fill-half-disk and --disk-reserve
+* finish --months-to-fill-half-disk
* Add some random padding to http requests and responses, to make it
harder for traffic analysis to tell that it's keysafe traffic.
* Implement the different categories of servers in the server list.