| 99 | } |
| 100 | |
| 101 | void CliArguments::parseDisconnect(const QStringList &args) |
| 102 | { |
| 103 | cliCommand_ = CLI_COMMAND_DISCONNECT; |
| 104 | if (args.length() <= 2) { |
| 105 | return; |
| 106 | } |
| 107 | |
| 108 | int idx = 2; |
| 109 | QString arg = args[idx].toLower(); |
| 110 | if (getOptions(arg) == "n") { |
| 111 | nonBlocking_ = true; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | void CliArguments::parseFirewall(const QStringList &args) |
| 116 | { |
nothing calls this directly
no test coverage detected