Improve result names

This commit is contained in:
Christoph Hagen
2023-12-11 00:05:18 +01:00
parent 00d877c13a
commit ac40656c1c
3 changed files with 21 additions and 18 deletions

View File

@ -36,31 +36,31 @@ enum class MessageResult: uint8_t {
MessageAccepted = 0,
/// @brief The web socket received text while waiting for binary data.
TextReceived = 1,
TextReceivedOverSocket = 1,
/// @brief An unexpected socket event occured while performing the exchange.
UnexpectedSocketEvent = 2,
/// @brief The received message size is invalid.
InvalidMessageSize = 3,
InvalidMessageSizeFromRemote = 3,
/// @brief The message signature was incorrect.
MessageAuthenticationFailed = 4,
InvalidSignatureFromRemote = 4,
/// @brief The server challenge of the message did not match previous messages
ServerChallengeMismatch = 5,
InvalidServerChallengeFromRemote = 5,
/// @brief The client challenge of the message did not match previous messages
ClientChallengeInvalid = 6,
InvalidClientChallengeFromRemote = 6,
/// @brief An unexpected or unsupported message type was received
InvalidMessageType = 7,
InvalidMessageTypeFromRemote = 7,
/// @brief A message is already being processed
TooManyRequests = 8,
/// @brief The received message result was invalid
InvalidMessageResult = 9,
InvalidMessageResultFromRemote = 9,
/// @brief An invalid Url parameter was set sending a message to the device over a local connection
InvalidUrlParameter = 10,