Transceier52M: Make error response to an unknown command on UDP command interface more understandable.

Previously we just repeated the last response which could confuse a command sender.
This commit is contained in:
Alexander Chemeris 2013-04-08 00:14:08 +02:00
parent feb4028b1b
commit 2fb62ea45e
1 changed files with 1 additions and 0 deletions

View File

@ -759,6 +759,7 @@ void Transceiver::driveControl(size_t chan)
}
else {
LOG(WARNING) << "bogus command " << command << " on control interface.";
sprintf(response,"RSP ERR 1");
}
mCtrlSockets[chan]->write(response, strlen(response) + 1);