2019-11-18 20:33:15 +03:00
|
|
|
package packets
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
2021-02-04 00:30:55 +03:00
|
|
|
// PingrespPacket is an internal representation of the fields of the
|
|
|
|
// Pingresp MQTT packet
|
2019-11-18 20:33:15 +03:00
|
|
|
type PingrespPacket struct {
|
|
|
|
FixedHeader
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pr *PingrespPacket) String() string {
|
2021-02-04 00:30:55 +03:00
|
|
|
return pr.FixedHeader.String()
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pr *PingrespPacket) Write(w io.Writer) error {
|
|
|
|
packet := pr.FixedHeader.pack()
|
|
|
|
_, err := packet.WriteTo(w)
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-02-04 00:30:55 +03:00
|
|
|
// Unpack decodes the details of a ControlPacket after the fixed
|
|
|
|
// header has been read
|
2019-11-18 20:33:15 +03:00
|
|
|
func (pr *PingrespPacket) Unpack(b io.Reader) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-04 00:30:55 +03:00
|
|
|
// Details returns a Details struct containing the Qos and
|
|
|
|
// MessageID of this ControlPacket
|
2019-11-18 20:33:15 +03:00
|
|
|
func (pr *PingrespPacket) Details() Details {
|
|
|
|
return Details{Qos: 0, MessageID: 0}
|
|
|
|
}
|