Documentation ¶
Index ¶
Constants ¶
View Source
const ( V3Accepted = 0x00 V3UnacceptableProtocolVersion = 0x01 V3IdentifierRejected = 0x02 V3BadUsernameorPassword = 0x04 V3NotAuthorized = 0x05 )
There are the possible Code in v311 connack packet.
Variables ¶
View Source
var ( ErrMalformed = &Error{Code: MalformedPacket} ErrProtocol = &Error{Code: ProtocolError} )
Functions ¶
This section is empty.
Types ¶
type Code ¶
type Code = byte
Code
const ( Success Code = 0x00 NormalDisconnection Code = 0x00 GrantedQoS0 Code = 0x00 GrantedQoS1 Code = 0x01 GrantedQoS2 Code = 0x02 DisconnectWithWillMessage Code = 0x04 NotMatchingSubscribers Code = 0x10 NoSubscriptionExisted Code = 0x11 ContinueAuthentication Code = 0x18 ReAuthenticate Code = 0x19 UnspecifiedError Code = 0x80 MalformedPacket Code = 0x81 ProtocolError Code = 0x82 ImplementationSpecificError Code = 0x83 UnsupportedProtocolVersion Code = 0x84 ClientIdentifierNotValid Code = 0x85 BadUserNameOrPassword Code = 0x86 NotAuthorized Code = 0x87 ServerBusy Code = 0x89 Banned Code = 0x8A BadAuthMethod Code = 0x8C KeepAliveTimeout Code = 0x8D SessionTakenOver Code = 0x8E TopicFilterInvalid Code = 0x8F TopicNameInvalid Code = 0x90 PacketIDInUse Code = 0x91 PacketIDNotFound Code = 0x92 RecvMaxExceeded Code = 0x93 TopicAliasInvalid Code = 0x94 PacketTooLarge Code = 0x95 MessageRateTooHigh Code = 0x96 QuotaExceeded Code = 0x97 AdminAction Code = 0x98 PayloadFormatInvalid Code = 0x99 RetainNotSupported Code = 0x9A QoSNotSupported Code = 0x9B UseAnotherServer Code = 0x9C ServerMoved Code = 0x9D ConnectionRateExceeded Code = 0x9F MaxConnectTime Code = 0xA0 SubIDNotSupported Code = 0xA1 WildcardSubNotSupported Code = 0xA2 )
There are the possible reason Code in v5
type Error ¶
type Error struct { // Code is the MQTT Reason Code Code Code ErrorDetails }
Error wraps a MQTT reason code and error details.
type ErrorDetails ¶
type ErrorDetails struct { // ReasonString is the reason string field in property. // https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901029 ReasonString []byte // UserProperties is the user property field in property. UserProperties []struct { K []byte V []byte } }
ErrorDetails wraps reason string and user property for diagnostics.
Click to show internal directories.
Click to hide internal directories.