From edbbf16635209ec9d689843d847ddb25aef10592 Mon Sep 17 00:00:00 2001 From: Tha14 Date: Sun, 12 Nov 2023 21:43:26 +0200 Subject: [PATCH] fix: always respond to version packets with toxcore version --- other/DHT_bootstrap.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/other/DHT_bootstrap.c b/other/DHT_bootstrap.c index cb469bfdce9..963807bf8d1 100644 --- a/other/DHT_bootstrap.c +++ b/other/DHT_bootstrap.c @@ -31,11 +31,14 @@ #include "../testing/misc_tools.h" +#define DHT_NODE_EXTRA_PACKETS + #ifdef DHT_NODE_EXTRA_PACKETS #include "./bootstrap_node_packets.h" -#define DHT_VERSION_NUMBER 1 -#define DHT_MOTD "This is a test motd" +#define DAEMON_VERSION_NUMBER (1000000000UL + TOX_VERSION_MAJOR*1000000UL + TOX_VERSION_MINOR*1000UL + TOX_VERSION_PATCH*1UL) + +static const char *motd_str = ""; //Change this to anything within 256 bytes(but 96 bytes maximum prefered) #endif #define PORT 33445 @@ -152,7 +155,7 @@ int main(int argc, char *argv[]) Onion_Announce *onion_a = new_onion_announce(logger, mem, rng, mono_time, dht); #ifdef DHT_NODE_EXTRA_PACKETS - bootstrap_set_callbacks(dht_get_net(dht), DHT_VERSION_NUMBER, DHT_MOTD, sizeof(DHT_MOTD)); + bootstrap_set_callbacks(dht_get_net(dht), (uint32_t)DAEMON_VERSION_NUMBER, (const uint8_t *) motd_str, strlen(motd_str)+1); #endif if (!(onion && forwarding && onion_a)) {