| 12345678910111213141516171819202122232425262728 |
- namespace MQTTnet.Protocol
- {
- public enum MqttConnectReasonCode
- {
- Success = 0,
- UnspecifiedError = 128,
- MalformedPacket = 129,
- ProtocolError = 130,
- ImplementationSpecificError = 131,
- UnsupportedProtocolVersion = 132,
- ClientIdentifierNotValid = 133,
- BadUserNameOrPassword = 134,
- NotAuthorized = 135,
- ServerUnavailable = 136,
- ServerBusy = 137,
- Banned = 138,
- BadAuthenticationMethod = 140,
- TopicNameInvalid = 144,
- PacketTooLarge = 149,
- QuotaExceeded = 151,
- PayloadFormatInvalid = 153,
- RetainNotSupported = 154,
- QoSNotSupported = 155,
- UseAnotherServer = 156,
- ServerMoved = 157,
- ConnectionRateExceeded = 159
- }
- }
|