summaryrefslogtreecommitdiff
path: root/kad
diff options
context:
space:
mode:
authorJames Crayne <jim.crayne@gmail.com>2019-10-16 11:42:09 +0000
committerJoe Crayne <joe@jerkface.net>2020-01-01 19:41:59 -0500
commit4bae608fed62372b30fe9edf602c0e4c87d92bb3 (patch)
tree37b401511cd55f1ae192ee8c5ca4cff7960832dd /kad
parent6894ac341a4e5691c72346bde9a26457d4e70460 (diff)
Synopsis & description
Diffstat (limited to 'kad')
-rw-r--r--kad/kad.cabal28
1 files changed, 21 insertions, 7 deletions
diff --git a/kad/kad.cabal b/kad/kad.cabal
index 5babda13..d709059c 100644
--- a/kad/kad.cabal
+++ b/kad/kad.cabal
@@ -1,14 +1,28 @@
1-- Initial kad.cabal generated by cabal init. For further documentation,
2-- see http://haskell.org/cabal/users-guide/
3
4name: kad 1name: kad
5version: 0.1.0.0 2version: 0.1.0.0
6-- synopsis: 3synopsis: Kademlia implementation used by the dhtd process.
7-- description: 4description:
5
6 Kademlia is a Distributed Hash Table Algorithm, useful for routing in a peer
7 to peer network. In particular, it is the algorithm used by the Bittorrent and
8 ToxChat networks.
9
10 The original intention of this library, was to provide a commons for all
11 implementers and implementations of kademlia. Mostly however, it's present
12 purpose is as the backbone to the routing done by the dhtd unix daemon, which
13 supports both of the afore named networks. One way to bootstrap a peer to peer
14 network is simply to use an existing one. This can be done by interfacing with
15 dhtd, which is available via the dht-client package. If however, you wish to
16 form an independent routing network based on the kademlia algorithm, or an
17 alternative to dhtd, then this library may be of interest to you.
18
19 That said, this library is not officially released, and all the usual caveats
20 apply until the 1.0 version is announced.
21
8license: BSD3 22license: BSD3
9license-file: LICENSE 23license-file: LICENSE
10author: James Crayne 24author: Joe Crayne, James Crayne
11maintainer: jim.crayne@gmail.com 25maintainer: James Crayne <jim.crayne@gmail.com>
12-- copyright: 26-- copyright:
13-- category: 27-- category:
14build-type: Simple 28build-type: Simple