summaryrefslogtreecommitdiff
path: root/src/Network/KRPC
AgeCommit message (Collapse)Author
2017-01-27More strictness.joe
2017-01-23Added thread-debug flag and "threads" command.joe
2017-01-23build fixesJames Crayne
2017-01-22More robust unicode handling.joe
2017-01-18Aeson-based pretty-printing of server requests.joe
2017-01-17Handle reflected IP addresses (see bep 42).joe
2014-08-01Remove unnecessary FunctionalDependencyMateusz Kowalczyk
This fixes cobit/bittorrent#7 for GHC 7.8.3: 7.8.3 fixed FunctionalDependencies so the existing instances are no longer allowed and in fact FD is not necessary there at all.
2014-02-19Add function isActiveSam Truzjan
2014-01-08Bump version numberSam Truzjan
2014-01-08Add some options TODOsSam Truzjan
2014-01-08Allow to ask for query countSam Truzjan
2014-01-08Handle sendmsg failuresSam Truzjan
2014-01-08Add HandlerFailure exceptionsSam Truzjan
2014-01-08Introduce QueryFailure exceptionsSam Truzjan
2014-01-07Allow to configure max buffer sizeSam Truzjan
2014-01-07Fix listenerThread mvar state trackingSam Truzjan
2014-01-07Allow to pass options from outsideSam Truzjan
2014-01-07Ignore EOF exception at recvFrom callSam Truzjan
2014-01-07Add logging at handlersSam Truzjan
2014-01-06Add logging to query functionSam Truzjan
2013-12-25Prettify documentation a bitSam Truzjan
2013-12-25Update documentationSam Truzjan
2013-12-25Kill listener thread at exitSam Truzjan
2013-12-24Update testsSam Truzjan
2013-12-24Update documentation in Method moduleSam Truzjan
2013-12-23Update message module documentationSam Truzjan
2013-12-23Add spec for Message moduleSam Truzjan
2013-12-22More permissive default query timeoutSam Truzjan
2013-12-22Run each handler in separate thread.Sam Truzjan
This is needed because handler can call query too. The minimal example: * listener received KQuery(1); * listener dispatch corresponding handler; * handler send KQuery(2); * handler blocked waiting for response; * listener is unable to receive KQuery(2) because it is blocked on handler. So we should run each handler in separated thread otherwise dead lock can happen.
2013-12-22Fix warningsSam Truzjan
2013-12-22Throw exception if query takes too longSam Truzjan
2013-12-22Expose Handler type synonymSam Truzjan
2013-12-21Separate KRPC monad from Handler monadSam Truzjan
2013-12-20Add default method for KRPC classSam Truzjan
2013-12-20Handle transactions properlySam Truzjan
2013-12-19Add transaction Id to error messagesSam Truzjan
2013-12-19Add TransactionId to KQuery and KResponseSam Truzjan
2013-12-19Rename Protocol module to MessageSam Truzjan
2013-12-19Move all socket stuff to KRPC moduleSam Truzjan
2013-12-19Remove param names from Method datatypeSam Truzjan
2013-12-19Remove Scheme moduleSam Truzjan
2013-12-19Remove useless type synonymsSam Truzjan
2013-10-17Strictify intermediate datatypesSam Truzjan
2013-10-17Fix bug after migrationSam Truzjan
2013-10-17Remove containers dependencySam Truzjan
2013-10-17Fix warningsSam Truzjan
2013-10-17Update library to use bencoding == 0.4.*Sam Truzjan
2013-10-03Remove obsolete TODOsSam Truzjan
2013-10-03Eliminate bytestring copying in sendMessage functionSam Truzjan
2013-10-03IPv6 enabled communicationSam Truzjan