summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2014-02-16Split query stuff from Session moduleSam Truzjan
2014-02-16Fix build failureSam Truzjan
2014-02-15Add command line arguments to tiny clientSam Truzjan
2014-02-15Move metadata exchange from Wire to SessionSam Truzjan
2014-02-12Add broadcast channel for P2P messagingSam Truzjan
2014-02-12Initialize exchange session fieldsSam Truzjan
2014-02-11Add reference to session from connectionSam Truzjan
2014-02-11Add exchange manager and session to client sessionSam Truzjan
2014-02-08Redesign core of clientSam Truzjan
2014-02-03Update client exampleSam Truzjan
2014-01-23Add class MonadBitTorrentSam Truzjan
2014-01-13Add announce set to DHT sessionSam Truzjan
2014-01-12Fetch infodict concurrentlySam Truzjan
2014-01-09Add TODOs to mktorrent utilitySam Truzjan
2014-01-09Merge gettorrent to mktorrentSam Truzjan
2014-01-08Fix some -Wall suggestionsSam Truzjan
2014-01-06Fix warnings in MkTorrent utilitySam Truzjan
2014-01-06Add check command to mktorrent utilitySam Truzjan
2014-01-05Make Torrent(tAnnounce) field optionalSam Truzjan
2014-01-05Use exceptions instead of return valueSam Truzjan
2014-01-05Merge command options with command flagsSam Truzjan
2014-01-05Move mktorrent sources to this pkgSam Truzjan
2014-01-03Add basic gettorrent implementationSam Truzjan
2014-01-03Add skeleton for gettorrent exampleSam Truzjan
2013-12-13Update client exampleSam Truzjan
2013-10-31Merge bittorrent package with torrent-contentSam Truzjan
2013-07-16~ A few fixes in session.Sam T
2013-07-14~ Use timestamp peer Id generator.Sam T
2013-07-14~ Minor changes.Sam T
2013-07-14~ Hide PeerSession and SwarmSession.Sam T
2013-07-08~ Unliterate example.Sam T
2013-07-07~ Yet Yet Another Literate Haskell Test.Sam T
2013-07-07~ Yet Another Literate Haskell Test.Sam T
2013-07-07~ Another Literate Haskell test.Sam T
2013-07-07~ Literate Haskell test.Sam T
2013-07-03~ Use lazy bytestringSam T
This lead to the following consequences: * we could efficiently read from storage - if block intersects files boundaries then we will "view" the block in the two different bytestrings. To avoid concat we now return lazy bytestring; * we could read block from socket without "concat" - again, for the same reason. The pitfail is that now we have a bit more heap object, but blocks lifetime is very short and this shouldnt play the big difference. The lifetime is either (socket -> storage -> unreachable) or (storage -> socket -> unreachable) unless a lib user keep block for their own purposes.
2013-06-30~ Keep track left progress bytes.Sam T
2013-06-30+ Add very basic storage operations.Sam T
Now we can download and make some progress, but very unstable.
2013-06-29+ Add throughput bench, simplify example.Sam T
2013-06-28+ Default P2P.Sam T
2013-06-20~ Fix typo in dirname.Sam T