diff options
Diffstat (limited to 'src/RemoteControl.cpp')
| -rw-r--r-- | src/RemoteControl.cpp | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/src/RemoteControl.cpp b/src/RemoteControl.cpp index b534914..53b7204 100644 --- a/src/RemoteControl.cpp +++ b/src/RemoteControl.cpp @@ -130,9 +130,10 @@ RemoteControllerTelnet::dispatch_command(tcp::socket& socket, string command)          else if (cmd.size() == 2) {              try {                  stringstream ss; -                list<string> params = get_param_list_(cmd[1]); -                for (list<string>::iterator it = params.begin(); it != params.end(); it++) { -                    ss << *it << " "; + +                list< vector<string> > params = get_parameter_descriptions_(cmd[1]); +                for (list< vector<string> >::iterator it = params.begin(); it != params.end(); it++) { +                    ss << (*it)[0] << " : " << (*it)[1] << endl;                  }                  reply(socket, ss.str());              } | 
