| 708 | } |
| 709 | |
| 710 | bool ProcessCommandMON(ICECAdapter *parser, const std::string &command, std::string &arguments) |
| 711 | { |
| 712 | if (command == "mon") |
| 713 | { |
| 714 | std::string strEnable; |
| 715 | if (GetWord(arguments, strEnable) && (strEnable == "0" || strEnable == "1")) |
| 716 | { |
| 717 | parser->SwitchMonitoring(strEnable == "1"); |
| 718 | return true; |
| 719 | } |
| 720 | } |
| 721 | |
| 722 | return false; |
| 723 | } |
| 724 | |
| 725 | bool ProcessCommandBL(ICECAdapter *parser, const std::string &command, std::string & UNUSED(arguments)) |
| 726 | { |
no test coverage detected