summaryrefslogtreecommitdiff
path: root/TODO.org
diff options
context:
space:
mode:
authorDaniel Gröber <dxld@darkboxed.org>2013-12-25 17:15:38 +0000
committerDaniel Gröber <dxld@darkboxed.org>2013-12-25 17:15:38 +0000
commit88b446862f5f1ecd10631d23c47e20fb2fe1d932 (patch)
tree269b3cc559b2aad9cb0d7164c5b33249d2aef768 /TODO.org
parent6c3f00a86a04f7eac6f09c8a4c7d6b6d5d4d252e (diff)
Update TODO items
Diffstat (limited to 'TODO.org')
-rw-r--r--TODO.org13
1 files changed, 8 insertions, 5 deletions
diff --git a/TODO.org b/TODO.org
index 7fcb95c3..4c8fc619 100644
--- a/TODO.org
+++ b/TODO.org
@@ -1,5 +1,8 @@
1* DONE version 0.0.0.1 1* TODO Rename Ext,Extension -> Cap
2* TODO torrent linting for indexing 2* TODO Use System.IO instead of Network.recv/send
3* TODO move PeerClient to Data.Torrent.Client 3 The functions in System.IO use GHC/base's built in support for epoll/kqueue
4* TODO Word64 for Progress fields 4 and the like which makes them a whole lot more efficient for file descriptor
5* TODO rename TConnection -> Connection, etc 5 I/O. Network.recv/send on the other hand just use a plain FFI call to
6 recvmsg/sendmsg which will block the whole OS thread.
7
8** TODO Compare performance of the two