diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2013-12-26 02:06:05 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2013-12-26 02:06:05 +0400 |
commit | ea5c29d7f91397f7979b6f73052ef30a5cdf030f (patch) | |
tree | b2ca2c858f814f45658cfe95fbe6aa305635a2f7 /TODO.org | |
parent | 62253eb04e3ad1225d2a87a3c9647c6c092114df (diff) | |
parent | 5d545a58787bc1beadc13fa5838a4ad2472c5e88 (diff) |
Merge branch 'dev' of https://github.com/DanielG/bittorrent
Diffstat (limited to 'TODO.org')
-rw-r--r-- | TODO.org | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -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 | ||