2020-03-12 09:10:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
* Copyright © 2016-2018 The TokTok team.
|
|
|
|
* Copyright © 2015 Tox project.
|
2017-01-14 23:46:31 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2020-03-12 09:10:33 +08:00
|
|
|
* Special bootstrap node only packets.
|
2016-01-01 13:19:35 +08:00
|
|
|
*
|
2020-03-12 09:10:33 +08:00
|
|
|
* Include it in your bootstrap node and use: bootstrap_set_callbacks() to enable.
|
2016-01-01 13:19:35 +08:00
|
|
|
*/
|
2018-09-10 03:54:05 +08:00
|
|
|
#ifndef C_TOXCORE_OTHER_BOOTSTRAP_NODE_PACKETS_H
|
|
|
|
#define C_TOXCORE_OTHER_BOOTSTRAP_NODE_PACKETS_H
|
2016-01-01 13:19:35 +08:00
|
|
|
|
|
|
|
#include "../toxcore/network.h"
|
|
|
|
|
|
|
|
#define MAX_MOTD_LENGTH 256 /* I recommend you use a maximum of 96 bytes. The hard maximum is this though. */
|
|
|
|
|
|
|
|
int bootstrap_set_callbacks(Networking_Core *net, uint32_t version, uint8_t *motd, uint16_t motd_length);
|
|
|
|
|
2018-09-10 03:54:05 +08:00
|
|
|
#endif // C_TOXCORE_OTHER_BOOTSTRAP_NODE_PACKETS_H
|