summaryrefslogtreecommitdiff
path: root/dht/TODO.org
diff options
context:
space:
mode:
authorJames Crayne <jim.crayne@gmail.com>2019-09-28 13:43:29 -0400
committerJoe Crayne <joe@jerkface.net>2020-01-01 19:27:53 -0500
commit11987749fc6e6d3e53ea737d46d5ab13a16faeb8 (patch)
tree5716463275c2d3e902889db619908ded2a73971c /dht/TODO.org
parentadd2c76bced51fde5e9917e7449ef52be70faf87 (diff)
Factor out some new libraries
word64-map: Data.Word64Map network-addr: Network.Address tox-crypto: Crypto.Tox lifted-concurrent: Control.Concurrent.Lifted.Instrument Control.Concurrent.Async.Lifted.Instrument psq-wrap: Data.Wrapper.PSQInt Data.Wrapper.PSQ minmax-psq: Data.MinMaxPSQ tasks: Control.Concurrent.Tasks kad: Network.Kademlia Network.Kademlia.Bootstrap Network.Kademlia.Routing Network.Kademlia.CommonAPI Network.Kademlia.Persistence Network.Kademlia.Search
Diffstat (limited to 'dht/TODO.org')
-rw-r--r--dht/TODO.org17
1 files changed, 17 insertions, 0 deletions
diff --git a/dht/TODO.org b/dht/TODO.org
new file mode 100644
index 00000000..dbba5c8c
--- /dev/null
+++ b/dht/TODO.org
@@ -0,0 +1,17 @@
1* configure travis
2* liftKRPC ::
3* add withRetries
4* bump version to 0.7.0.0
5
6* add issue: getQueryCount --> getRpcStats
7data Stats = Stats
8 { queryFailed :: {-# UNPACK #-} !Int
9 , querySucceed :: {-# UNPACK #-} !Int
10 , handlerFailed :: {-# UNPACK #-} !Int
11 , handlerSucceed :: {-# UNPACK #-} !Int
12 , sentBytes :: {-# UNPACK #-} !Int
13 , receivedBytes :: {-# UNPACK #-} !Int
14 }
15
16* add asyncQuery :: SockAddr -> a -> m (Async a)
17* add queries :: [(SockAddr, a)] -> m [Either a] \ No newline at end of file