Add ListPeers command
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / FcpClient.java
1 package net.pterodactylus.fcp.quelaton;
2
3 /**
4  * FCP client used to communicate with a Freenet node.
5  *
6  * @author <a href="bombe@freenetproject.org">David ‘Bombe’ Roden</a>
7  */
8 public interface FcpClient {
9
10         GenerateKeypairCommand generateKeypair();
11         ClientGetCommand clientGet();
12         ClientPutCommand clientPut();
13
14         ListPeersCommand listPeers();
15
16 }