mirror of
https://github.com/ChronosX88/KademliaDHT.git
synced 2024-11-22 02:02:21 +00:00
This commit is contained in:
parent
46147eddd1
commit
630f8c2f28
@ -30,6 +30,9 @@ import kademlia.operation.StoreOperation;
|
|||||||
* @todo Handle compressing data
|
* @todo Handle compressing data
|
||||||
* @todo Allow optional storing of content locally using the put method
|
* @todo Allow optional storing of content locally using the put method
|
||||||
* @todo Instead of using a StoreContentMessage to send a store RPC and a ContentMessage to receive a FIND rpc, make them 1 message with different operation type
|
* @todo Instead of using a StoreContentMessage to send a store RPC and a ContentMessage to receive a FIND rpc, make them 1 message with different operation type
|
||||||
|
* @todo If we're trying to send a message to this node, just cancel the sending process and handle the message right here
|
||||||
|
* @todo Keep this node in it's own routing table - it helps for ContentRefresh operation - easy to check whether this node is one of the k-nodes for a content
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public class Kademlia
|
public class Kademlia
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package kademlia.operation;
|
package kademlia.operation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import kademlia.core.Configuration;
|
import kademlia.core.Configuration;
|
||||||
import kademlia.core.KadServer;
|
import kademlia.core.KadServer;
|
||||||
|
Loading…
Reference in New Issue
Block a user