2019-11-18 20:33:15 +03:00
|
|
|
package packets
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
2021-02-04 00:30:55 +03:00
|
|
|
// PingreqPacket is an internal representation of the fields of the
|
|
|
|
// Pingreq MQTT packet
|
2019-11-18 20:33:15 +03:00
|
|
|
type PingreqPacket struct {
|
|
|
|
FixedHeader
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pr *PingreqPacket) String() string {
|
2021-02-04 00:30:55 +03:00
|
|
|
return pr.FixedHeader.String()
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pr *PingreqPacket) 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 *PingreqPacket) 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 *PingreqPacket) Details() Details {
|
|
|
|
return Details{Qos: 0, MessageID: 0}
|
|
|
|
}
|