From: David ‘Bombe’ Roden Date: Thu, 2 May 2013 19:12:36 +0000 (+0200) Subject: Add possibility to disconnect all connections at once. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=52be4d6d0bf21502d301814ba88735fd72a3f284;hp=d3a8f3edb125265c6feb8b0ccfaa035497c07f15;p=xudocci.git Add possibility to disconnect all connections at once. --- diff --git a/src/main/java/net/pterodactylus/xdcc/ui/stdin/CommandReader.java b/src/main/java/net/pterodactylus/xdcc/ui/stdin/CommandReader.java index 2ef14d7..eaaef23 100644 --- a/src/main/java/net/pterodactylus/xdcc/ui/stdin/CommandReader.java +++ b/src/main/java/net/pterodactylus/xdcc/ui/stdin/CommandReader.java @@ -169,9 +169,15 @@ public class CommandReader extends AbstractExecutionThreadService { } writeLine("End of connections."); } else if (words[0].equalsIgnoreCase("disconnect")) { - Integer index = Ints.tryParse(words[1]); - if ((index != null) && (index < lastConnections.size())) { - core.closeConnection(lastConnections.get(index)); + if ((words.length == 1) || ("all".equals(words[1]))) { + for (Connection connection : lastConnections) { + core.closeConnection(connection); + } + } else { + Integer index = Ints.tryParse(words[1]); + if ((index != null) && (index < lastConnections.size())) { + core.closeConnection(lastConnections.get(index)); + } } }