summaryrefslogtreecommitdiff
path: root/other/bootstrap_serverdaemon/Makefile.inc
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2014-01-19 00:43:31 -0500
committerMaxim Biro <nurupo.contributions@gmail.com>2014-01-19 04:34:58 -0500
commit28edc23329ff630a7ce3d594f2d972d47eb5c6f9 (patch)
tree2e9f77fe204670fe642ce841e735abc5dd8d7bf7 /other/bootstrap_serverdaemon/Makefile.inc
parent91b06da0c3aa399edf7e00e33a8f380b42e44f43 (diff)
Improved DHT bootstrap daemon
Supports "unlimited" number of bootstrap nodes in the config file, instead of just 32. PID and keys file paths are not limited by 512 chars anymore. Doesn't read the whole list of bootstrap servers into a global datastructure that just sits there after being processed once -- reads bootstrap servers one by one, processing them between reads. Supports IPv6. Has an option for IPv6. Supports LAN discovery. Has an option for LAN discovery. Writes to syslog. Uses new functions introduced in the core. `status` in the bash script now works. Has a simple README, with instructions for Debian-based distros.
Diffstat (limited to 'other/bootstrap_serverdaemon/Makefile.inc')
-rw-r--r--other/bootstrap_serverdaemon/Makefile.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/other/bootstrap_serverdaemon/Makefile.inc b/other/bootstrap_serverdaemon/Makefile.inc
index 73b078c3..2607bfee 100644
--- a/other/bootstrap_serverdaemon/Makefile.inc
+++ b/other/bootstrap_serverdaemon/Makefile.inc
@@ -1,9 +1,9 @@
1if BUILD_DHT_BOOTSTRAP_DAEMON 1if BUILD_DHT_BOOTSTRAP_DAEMON
2 2
3noinst_PROGRAMS += DHT_bootstrap_daemon 3noinst_PROGRAMS += tox-dht-bootstrap-server-daemon
4 4
5DHT_bootstrap_daemon_SOURCES = \ 5DHT_bootstrap_daemon_SOURCES = \
6 ../other/bootstrap_serverdaemon/DHT_bootstrap_daemon.c 6 ../other/bootstrap_serverdaemon/tox-dht-bootstrap-server-daemon.c
7 7
8DHT_bootstrap_daemon_CFLAGS = \ 8DHT_bootstrap_daemon_CFLAGS = \
9 -I$(top_srcdir)/other/bootstrap_serverdaemon \ 9 -I$(top_srcdir)/other/bootstrap_serverdaemon \
@@ -22,5 +22,5 @@ DHT_bootstrap_daemon_LDADD = \
22endif 22endif
23 23
24EXTRA_DIST += \ 24EXTRA_DIST += \
25 $(top_srcdir)/other/bootstrap_serverdaemon/server.cfg \ 25 $(top_srcdir)/other/bootstrap_serverdaemon/conf \
26 $(top_srcdir)/other/bootstrap_serverdaemon/DHT_bootstrap_daemon.sh 26 $(top_srcdir)/other/bootstrap_serverdaemon/tox-dht-bootstrap-server-daemon