forked from Green-Sky/tomato
Green Sky
a3126d581b
82460b212 feat: add ngc events 24b54722a fix: Ensure we have allocators available for the error paths. 48dbcfebc cleanup: Remove redundant `-DSODIUM_EXPORT` from definitions. 0cef46ee9 cleanup: Fix a few more clang-tidy warnings. 0c5b918e9 cleanup: Fix a few more clang-tidy warnings. 4d3c97f49 cleanup: Enforce stricter identifier naming using clang-tidy. a549807df refactor: Add `mem` module to allow tests to override allocators. 6133fb153 chore: Add devcontainer setup for codespaces. 620e07ecd chore: Set a timeout for tests started using Conan c0ec33b16 chore: Migrate Windows CI from Appveyor to Azure DevOps 8ed47f3ef fix incorrect documentation a1e245841 docs: Fix doxygen config and remove some redundant comments. b0f633185 chore: Fix the Android CI job 7469a529b fix: Add missing `#include <array>`. 2b1a6b0d2 add missing ngc constants getter declarations and definitions 2e02d5637 chore: Add missing module dependencies. REVERT: 67badf694 feat: add ngc events git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 82460b2124216af1ac9d63060de310a682a2fd15
49 lines
1.4 KiB
C
49 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* Copyright © 2016-2018 The TokTok team.
|
|
* Copyright © 2013 Tox project.
|
|
* Copyright © 2013 plutooo
|
|
*/
|
|
|
|
/**
|
|
* Buffered pinging using cyclic arrays.
|
|
*/
|
|
#ifndef C_TOXCORE_TOXCORE_PING_H
|
|
#define C_TOXCORE_TOXCORE_PING_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "DHT.h"
|
|
#include "network.h"
|
|
|
|
typedef struct Ping Ping;
|
|
|
|
non_null()
|
|
Ping *ping_new(const Memory *mem, const Mono_Time *mono_time, const Random *rng, DHT *dht);
|
|
|
|
non_null(1) nullable(2)
|
|
void ping_kill(const Memory *mem, Ping *ping);
|
|
|
|
/** @brief Add nodes to the to_ping list.
|
|
* All nodes in this list are pinged every TIME_TO_PING seconds
|
|
* and are then removed from the list.
|
|
* If the list is full the nodes farthest from our public_key are replaced.
|
|
* The purpose of this list is to enable quick integration of new nodes into the
|
|
* network while preventing amplification attacks.
|
|
*
|
|
* @retval 0 if node was added.
|
|
* @retval -1 if node was not added.
|
|
*/
|
|
non_null()
|
|
int32_t ping_add(Ping *ping, const uint8_t *public_key, const IP_Port *ip_port);
|
|
|
|
/** @brief Ping all the valid nodes in the to_ping list every TIME_TO_PING seconds.
|
|
* This function must be run at least once every TIME_TO_PING seconds.
|
|
*/
|
|
non_null()
|
|
void ping_iterate(Ping *ping);
|
|
|
|
non_null()
|
|
void ping_send_request(Ping *ping, const IP_Port *ipp, const uint8_t *public_key);
|
|
|
|
#endif // C_TOXCORE_TOXCORE_PING_H
|