Add method to not ignore source of a peer
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyPeerCommand.java
index 5fe7ab0..0c8a0a4 100644 (file)
@@ -17,6 +17,10 @@ public interface ModifyPeerCommand {
        ModifyPeerCommand disallowLocalAddresses();
        ModifyPeerCommand setBurstOnly();
        ModifyPeerCommand clearBurstOnly();
+       ModifyPeerCommand setListenOnly();
+       ModifyPeerCommand clearListenOnly();
+       ModifyPeerCommand ignoreSource();
+       ModifyPeerCommand useSource();
 
        Executable<Optional<Peer>> byName(String name);
        Executable<Optional<Peer>> byIdentity(String nodeIdentity);