c-libp2p/include/libp2p/routing/dht_protocol.h

49 lines
1.6 KiB
C
Raw Normal View History

2017-03-30 18:58:53 +00:00
#pragma once
#include "libp2p/conn/session.h"
2017-09-14 21:49:50 +00:00
#include "libp2p/net/protocol.h"
2017-03-30 18:58:53 +00:00
#include "libp2p/peer/peerstore.h"
#include "libp2p/peer/providerstore.h"
2017-09-14 21:49:50 +00:00
#include "libp2p/record/message.h"
2017-03-30 18:58:53 +00:00
/***
* This is where kademlia and dht talk to the outside world
*/
struct Libp2pProtocolHandler* libp2p_routing_dht_build_protocol_handler(struct Peerstore* peer_store, struct ProviderStore* provider_store);
2017-03-30 18:58:53 +00:00
/**
* Take existing stream and upgrade to the Kademlia / DHT protocol/codec
* @param context the context
* @returns true(1) on success, otherwise false(0)
*/
int libp2p_routing_dht_upgrade_stream(struct SessionContext* context);
/**
* Handle a client requesting an upgrade to the DHT protocol
* @param context the context
* @returns true(1) on success, otherwise false(0)
*/
int libp2p_routing_dht_handshake(struct SessionContext* context);
/***
* Handle the incoming message. Handshake should have already
* been done. We should expect that the next read contains
* a protobuf'd kademlia message.
* @param session the context
* @param peerstore a list of peers
* @returns true(1) on success, otherwise false(0)
*/
int libp2p_routing_dht_handle_message(struct SessionContext* session, struct Peerstore* peerstore, struct ProviderStore* providerstore);
2017-09-14 21:49:50 +00:00
/**
* 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);