This repository was archived by the owner on Nov 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathREADME
57 lines (36 loc) · 1.61 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Hekate
******
Hekate is a BitTorrent seeder (informally, a "BitTorrent server", or software
for your "seedbox") designed to handle millions of simultaneous torrents and
tens of thousands of simultaneously connected peers.
Hekate is written in CPC, an experimental concurrent dialect of C. In order to
build Hekate, you will need to install the CPC compiler first.
http://www.pps.univ-paris-diderot.fr/~jch/software/hekate/
Checking out from repository
****************************
If you want to grab the latest development version:
git clone --recursive git://git.wifi.pps.univ-paris-diderot.fr/hekate
Note that you need the --recursive flag because of the dht submodule.
In case you forget it, you can check out (and update) submodules with:
git submodule update --init
There is also a github mirror:
git clone --recursive git://github.com/kerneis/hekate
Installation
************
To build Hekate, you need to install:
- the CPC compiler [http://www.pps.univ-paris-diderot.fr/~kerneis/software/cpc],
- libcurl,
- libopenssl,
- libpthread (which is required by CPC anyway),
and run:
make
Known bugs and limitations
**************************
- When listening() fails, trackers and dht continue to run whereas Hekate
should leave.
- Hekate uses mmap() for every file it serves, and never releases them. This
means you need enough virtual memory to hold all your files; this might be an
issue if you run Hekate on a 32-bit architecture.
Do not hesitate to report other bugs to the hekate-users mailing list:
http://lists.sourceforge.net/lists/listinfo/hekate-users
Gabriel Kerneis <gabriel@kerneis.info>