Add method to remove a peer by host name and port number
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / RemovePeerCommand.java
index cd43adb..e9f6e1e 100644 (file)
@@ -9,5 +9,6 @@ public interface RemovePeerCommand {
 
        Executable<Boolean> byName(String name);
        Executable<Boolean> byIdentity(String nodeIdentity);
+       Executable<Boolean> byHostAndPort(String host, int port);
 
 }