This commit is contained in:
Joshua Kissoon 2014-03-07 11:18:04 +05:30
parent 46147eddd1
commit 630f8c2f28
2 changed files with 3 additions and 1 deletions

View File

@ -30,6 +30,9 @@ import kademlia.operation.StoreOperation;
* @todo Handle compressing data
* @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 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
{

View File

@ -1,7 +1,6 @@
package kademlia.operation;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import kademlia.core.Configuration;
import kademlia.core.KadServer;