summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-09-14 15:04:35 -0400
committerJoey Hess <joeyh@joeyh.name>2016-09-14 15:04:35 -0400
commit0709306afeaba998d8f0a76e37517d4c227ac1c3 (patch)
tree700427bbbe5460e0acf8cbc9c9f793804cb96b3a
parent6a687943b209e8a8bc391268149f6f443d5cccbb (diff)
downloadkeysafe-0709306afeaba998d8f0a76e37517d4c227ac1c3.tar.gz
rate limiting and PoW seem to work now!
-rw-r--r--Servers.hs2
-rw-r--r--TODO1
2 files changed, 1 insertions, 2 deletions
diff --git a/Servers.hs b/Servers.hs
index ddc0d6e..55c1830 100644
--- a/Servers.hs
+++ b/Servers.hs
@@ -22,7 +22,7 @@ serverUrl srv = BaseUrl Http (serverName srv) (serverPort srv) ""
-- Using tor is highly recommended, to avoid correlation attacks.
networkServers :: IO [Server]
networkServers = return
- [ Server "vzgrspuxbtnlrtup.onion" 4242 -- keysafe.joeyh.name
+ [ Server "localhost" 4242 -- Server "vzgrspuxbtnlrtup.onion" 4242 -- keysafe.joeyh.name
, Server "localhost" 4242
, Server "localhost" 4242
]
diff --git a/TODO b/TODO
index c9100bb..58de1e6 100644
--- a/TODO
+++ b/TODO
@@ -1,6 +1,5 @@
Soon:
-* test rate limiting and PoW
* 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.