mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
28edc23329
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.
27 lines
889 B
Makefile
27 lines
889 B
Makefile
if BUILD_DHT_BOOTSTRAP_DAEMON
|
|
|
|
noinst_PROGRAMS += tox-dht-bootstrap-server-daemon
|
|
|
|
DHT_bootstrap_daemon_SOURCES = \
|
|
../other/bootstrap_serverdaemon/tox-dht-bootstrap-server-daemon.c
|
|
|
|
DHT_bootstrap_daemon_CFLAGS = \
|
|
-I$(top_srcdir)/other/bootstrap_serverdaemon \
|
|
$(LIBSODIUM_CFLAGS) \
|
|
$(NACL_CFLAGS) \
|
|
$(LIBCONFIG_CFLAGS)
|
|
|
|
DHT_bootstrap_daemon_LDADD = \
|
|
$(LIBSODIUM_LDFLAGS) \
|
|
$(NACL_LDFLAGS) \
|
|
libtoxcore.la \
|
|
$(LIBCONFIG_LIBS) \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(NACL_LIBS)
|
|
|
|
endif
|
|
|
|
EXTRA_DIST += \
|
|
$(top_srcdir)/other/bootstrap_serverdaemon/conf \
|
|
$(top_srcdir)/other/bootstrap_serverdaemon/tox-dht-bootstrap-server-daemon
|