e1135fef3b
This engine has 2 threads. One to process the request queue, the other to gather up and build peer messages and send them.
25 lines
514 B
C
25 lines
514 B
C
/***
|
|
* This implements the BitswapNetwork. Members of this network can fill requests and
|
|
* smartly handle queues of local and remote requests.
|
|
*
|
|
* For a somewhat accurate diagram of how this may work, @see https://github.com/ipfs/js-ipfs-bitswap
|
|
*/
|
|
|
|
#include "ipfs/exchange/bitswap/network.h"
|
|
|
|
/***
|
|
* The main loop
|
|
*/
|
|
|
|
/**
|
|
* We received a BitswapMessage from the network
|
|
*/
|
|
/*
|
|
ipfs_bitswap_network_receive_message(struct BitswapContext* context) {
|
|
|
|
}
|
|
*/
|
|
|
|
/**
|
|
* We want to pop something off the queue
|
|
*/
|