diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2014-03-15 19:05:40 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2014-03-15 19:05:40 +0400 |
commit | c0e2b270e16a56471bcb00c7772c06945357b5eb (patch) | |
tree | 21e622f50f7c312f5e62d00cbac44a9ce0446bbe /TODO.org | |
parent | 81ecdc02e48eccfc558b22d0480e759d6bede750 (diff) |
Update TODO
Diffstat (limited to 'TODO.org')
-rw-r--r-- | TODO.org | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -1,17 +1,17 @@ | |||
1 | * DONE document protocol | 1 | * configure travis |
2 | * DONE Ascending everywhere | 2 | * liftKRPC :: |
3 | * DONE document KRPC module | 3 | * add withRetries |
4 | * DONE move exsamples to tests | 4 | * bump version to 0.7.0.0 |
5 | * DONE make HUnit tests | 5 | |
6 | * DONE run server in test automatically | 6 | * add issue: getQueryCount --> getRpcStats |
7 | * DONE use one socket everywhere | 7 | data Stats = Stats |
8 | * DONE fix performance issues | 8 | { queryFailed :: {-# UNPACK #-} !Int |
9 | * DONE add readme | 9 | , querySucceed :: {-# UNPACK #-} !Int |
10 | * DONE return scheme back | 10 | , handlerFailed :: {-# UNPACK #-} !Int |
11 | * DONE add Show instance for Method | 11 | , handlerSucceed :: {-# UNPACK #-} !Int |
12 | * DONE add BEncodable instance for Method | 12 | , sentBytes :: {-# UNPACK #-} !Int |
13 | * DONE remove async api | 13 | , receivedBytes :: {-# UNPACK #-} !Int |
14 | * DONE expose client addr in server-side handlers | 14 | } |
15 | * DONE major version bump to 0.2.0.0 (reason: async API removed) | 15 | |
16 | * DONE Remote.* -> Network.* | 16 | * add asyncQuery :: SockAddr -> a -> m (Async a) |
17 | * DONE ipv6 support | 17 | * add queries :: [(SockAddr, a)] -> m [Either a] \ No newline at end of file |