| 976 | } |
| 977 | |
| 978 | void Console::commandConfig(socket_native_type fd, std::string_view /*args*/) |
| 979 | { |
| 980 | Scheduler* sched = Director::getInstance()->getScheduler(); |
| 981 | sched->runOnAxmolThread([=]() { |
| 982 | Console::Utility::mydprintf(fd, "%s", Configuration::getInstance()->getInfo().c_str()); |
| 983 | Console::Utility::sendPrompt(fd); |
| 984 | }); |
| 985 | } |
| 986 | |
| 987 | void Console::commandDebugMsg(socket_native_type fd, std::string_view /*args*/) |
| 988 | { |
nothing calls this directly
no test coverage detected