From 96ed7bc511176038957dcf68a0da69511f59e701 Mon Sep 17 00:00:00 2001 From: John Jones Date: Thu, 14 Sep 2017 16:49:50 -0500 Subject: [PATCH] Testing ipns --- include/libp2p/routing/dht_protocol.h | 15 +++++++++++++-- routing/dht_protocol.c | 12 ++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/include/libp2p/routing/dht_protocol.h b/include/libp2p/routing/dht_protocol.h index 61fd3e1..3f54f85 100644 --- a/include/libp2p/routing/dht_protocol.h +++ b/include/libp2p/routing/dht_protocol.h @@ -1,10 +1,10 @@ #pragma once #include "libp2p/conn/session.h" +#include "libp2p/net/protocol.h" #include "libp2p/peer/peerstore.h" #include "libp2p/peer/providerstore.h" -#include "libp2p/net/protocol.h" - +#include "libp2p/record/message.h" /*** * This is where kademlia and dht talk to the outside world @@ -35,3 +35,14 @@ int libp2p_routing_dht_handshake(struct SessionContext* context); * @returns true(1) on success, otherwise false(0) */ int libp2p_routing_dht_handle_message(struct SessionContext* session, struct Peerstore* peerstore, struct ProviderStore* providerstore); + +/** + * Used to send a message to the nearest x peers + * + * @param local_peer the local peer + * @param providerstore the collection of providers + * @param msg the message to send + * @returns true(1) on success, false(0) otherwise + */ +int libp2p_routing_dht_send_message(struct Libp2pPeer* local_peer, struct ProviderStore* providerstore, struct KademliaMessage* msg); + diff --git a/routing/dht_protocol.c b/routing/dht_protocol.c index e56fba0..f4a4a9f 100644 --- a/routing/dht_protocol.c +++ b/routing/dht_protocol.c @@ -483,3 +483,15 @@ int libp2p_routing_dht_handle_message(struct SessionContext* session, struct Pee libp2p_message_free(message); return retVal; } + +/** + * Used to send a message to the nearest x peers + * + * @param local_peer the local peer + * @param providerstore the collection of providers + * @param msg the message to send + * @returns true(1) on success, false(0) otherwise + */ +int libp2p_routing_dht_send_message(struct Libp2pPeer* local_peer, struct ProviderStore* providerstore, struct KademliaMessage* msg) { + return 0; +}