(self,argv,argc,send_reply)
| 230 | return True |
| 231 | |
| 232 | def cmd_help(self,argv,argc,send_reply): |
| 233 | if argc != 1: return False |
| 234 | helpstr = "Commands: " |
| 235 | for x in dir(self): |
| 236 | if x.find("cmd_") != 0: continue |
| 237 | helpstr += x.replace("cmd_","!")+" " |
| 238 | send_reply(helpstr) |
| 239 | return True |
| 240 | |
| 241 | def cmd_config(self,argv,argc,send_reply): |
| 242 | if argc > 2: return False |
nothing calls this directly
no outgoing calls
no test coverage detected