command = "";
}
if (commands.contains(command)) {
TelnetHandler handler = ExtensionLoader.getExtensionLoader(TelnetHandler.class).getExtension(command);
try {
String result = handler.telnet(channel, message);
if (result != null) {
buf.append(result);
}
} catch (Throwable t) {
buf.append(t.getMessage());