summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-07~ Move binary files in the res folder.Sam T
2013-06-07~ Throw exception in askTracker.Sam T
HTTP client functions throws an exception. If we unable to decode result we return BEncode.Result.Left. So user of this function should check both kinds of errors and this complicate usage. Instead of this we throw IOException too.
2013-06-07~ Polish documentation for Tracker.Protocol.Sam T
2013-06-07~ Use bytestring stream in tracker communication.Sam T
stringBufferOp is defined in terms of strictBuffer op. So we previously we have convertion from strict bytestring to string and then manually pack string back to strict bytestring to with BC.pack. We could avoid this unnecessary convertion by just using bytestring streams. http://hackage.haskell.org/packages/archive/HTTP/4000.0.9/doc/html/Network-BufferType.html#v:stringBufferOp
2013-06-07~ Fix bug in torrent bencode instance.Sam T
Also add encoding tests for torrent module.
2013-06-07~ Use testing flag to hide internals.Sam T
We need some internal functions in tests and benchmarks, so it's better to just use CPP for this.
2013-06-07+ Add tests for bitfield.Sam T
2013-06-06- Remove Peer.* modules.Sam T
I do not expect that this modules will grow later, so they are merged with Network.BitTorrent.Peer now. We also avoid one "reexport only" module this way.
2013-06-06+ Add some tests.Sam T
2013-06-06~ Update readme.Sam T
2013-06-06~ Rename cabal file.Sam T
2013-06-06~ Rename package to bittorrent.Sam T
It seems like 'network-bittorrent' is too long and annoying: everyone knows that bittorrent is a network protocol and there is no purpose to prefix it with 'network'. Moreover hackage do not have package with the our new name. So I think just 'bittorrent' is a more suitable name for the package.
2013-06-06~ Document bitfield.Sam T
2013-06-06~ Add docs to Torrent module.Sam T
2013-06-02~ Use pretty package for pretty print.Sam T
This is a bit faster and pretty!
2013-06-02~ Merge InfoHash to Torrent.Sam T
This allow to provide better interface.
2013-06-02~ Use IntSet instead of ByteString for bitfields.Sam T
There are several reasons for this: * IntSet is stored in ordinary heap, while ByteStrings in pinned memory; * Our IntSet's should be much faster 90% time. (in typical BT client) Hovewer in worst case IntSet is slower, but difference should is not so big. (We should measure this although) * It's pure, tested, error-free and much more convenient. Moreover we have kill a lot of ugly code!
2013-05-25~ Use PortNumber instead of Word16 in Port message.Sam T
2013-05-25+ Add status section.Sam T
2013-05-20~ Rename field names.Sam T
2013-05-20~ Rename intset to bitfieldSam T
2013-05-20~ Unify export lists.Sam T
2013-05-20~ Relax dependencies.Sam T
2013-05-20~ Fetch mutable bitfield module from cobit package.Sam T
2013-05-19~ Prettify Torrent module a bit.Sam T
2013-05-17~ Move kademlia to standalone package.Sam T
2013-05-17~ Reorganize modules.Sam T
2013-05-16~ Some initial DHT skeleton.Sam T
2013-05-10~ Minor changes.Sam T
2013-05-08~ Fix handshake.Sam T
2013-05-08+ Add capabilities.Sam T
2013-05-06+ Add Peer.Status module.Sam T
2013-05-06+ Add naive selector detection.Sam T
2013-05-05~ Fix message length bug in handshake.Sam T
2013-05-05~ Move bitfields to Data.Sam T
2013-05-05+ Add bitfield completeness function.Sam T
2013-05-05~ Minor changes.Sam T
2013-05-05+ Add shorthand commands.Sam T
2013-05-05+ Add some benchs.Sam T
2013-05-05+ Add Selection module skeleton.Sam T
2013-05-05~ Performance improvements: binary bitfield operations.Sam T
2013-05-04+ Add bench for intersection & unionSam T
2013-05-04+ Add some test cases for findMin & finMax.Sam T
2013-05-04+ Performance improvement in findMax & findMin.Sam T
2013-05-04+ Add benchmarks for bitfields.Sam T
2013-05-03+ Add more properties for bitfield operations.Sam T
2013-05-03+ Add tests for bitfield min & max.Sam T
2013-05-03+ Add other bitfield operations.Sam T
2013-05-03+ Add initial tests for bitfields.Sam T
2013-05-03+ Add some bitfield operations.Sam T