Logging update

This commit is contained in:
Uwe Seimet 2021-12-19 12:35:50 +01:00
parent cecb72df3e
commit e2d4347ce6
2 changed files with 7 additions and 1 deletions

View File

@ -1589,6 +1589,10 @@ static void *MonThread(void *param)
}
default: {
LOGTRACE("Received unknown command %d", command.operation());
ReturnStatus(fd, false, "Unknown command", UNKNOWN_OPERATION);
// Wait until we become idle
while (active) {
usleep(500 * 1000);

View File

@ -201,8 +201,10 @@ message PbOperationInfo {
enum PbErrorCode {
// No error code available
NO_ERROR_CODE = 0;
// The client sent an operation code not supported by this server
UNKNOWN_OPERATION = 1;
// Authentication/Authorization error
UNAUTHORIZED = 1;
UNAUTHORIZED = 2;
}
// The supported file extensions mapped to their respective device types