summaryrefslogtreecommitdiff
path: root/TODO.org
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2013-12-26 02:06:05 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2013-12-26 02:06:05 +0400
commitea5c29d7f91397f7979b6f73052ef30a5cdf030f (patch)
treeb2ca2c858f814f45658cfe95fbe6aa305635a2f7 /TODO.org
parent62253eb04e3ad1225d2a87a3c9647c6c092114df (diff)
parent5d545a58787bc1beadc13fa5838a4ad2472c5e88 (diff)
Merge branch 'dev' of https://github.com/DanielG/bittorrent
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