123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #ifndef ReachabilityCollector_H
- #define ReachabilityCollector_H
- #include "subnode/BoilerplateResponder.h"
- #include "dht/Address.h"
- #include "memory/Allocator.h"
- #include "subnode/MsgCore.h"
- #include "subnode/LinkState.h"
- #include "util/Linker.h"
- Linker_require("subnode/ReachabilityCollector.c");
- struct ReachabilityCollector_PeerInfo
- {
- // Address of the peer from us
- struct Address addr;
- // Their path to us
- uint64_t pathThemToUs;
- bool querying;
- struct LinkState linkState;
- };
- struct ReachabilityCollector;
- // pi == NULL -> peer dropped
- typedef void (* ReachabilityCollector_OnChange)(struct ReachabilityCollector* rc,
- uint8_t ipv6[16],
- struct ReachabilityCollector_PeerInfo* pi);
- struct ReachabilityCollector
- {
- ReachabilityCollector_OnChange onChange;
- void* userData;
- };
- struct ReachabilityCollector_PeerInfo*
- ReachabilityCollector_getPeerInfo(struct ReachabilityCollector* rc, int peerNum);
- // NodeAddr->path should be 0 if the node is not reachable.
- void ReachabilityCollector_change(struct ReachabilityCollector* rc, struct Address* nodeAddr);
- void ReachabilityCollector_lagSample(
- struct ReachabilityCollector* rc, uint64_t label, uint32_t milliseconds);
- void ReachabilityCollector_updateBandwidthAndDrops(
- struct ReachabilityCollector* rc,
- uint64_t label,
- uint32_t sumOfPackets,
- uint32_t sumOfDrops,
- uint32_t sumOfKb);
- struct ReachabilityCollector* ReachabilityCollector_new(struct Allocator* allocator,
- struct MsgCore* mc,
- struct Log* log,
- struct EventBase* base,
- struct BoilerplateResponder* br,
- struct Address* myAddr,
- struct EncodingScheme* myScheme);
- #endif
|