Combine 4 TODOs into one
This commit is contained in:
parent
baf746a254
commit
272d5e505e
1 changed files with 6 additions and 4 deletions
|
@ -76,18 +76,20 @@ func (s *Session) VisitPing(p packets.PingreqPacket) {
|
||||||
s.Connection.sendPacket(packets.PingrespPacket{})
|
s.Connection.sendPacket(packets.PingrespPacket{})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//TODO implement QoSLevel 2
|
||||||
func (s *Session) VisitPubackPacket(_ packets.PubackPacket) {
|
func (s *Session) VisitPubackPacket(_ packets.PubackPacket) {
|
||||||
panic("not implemented") // TODO: Implement
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Session) VisitPubrecPacket(_ packets.PubrecPacket) {
|
func (s *Session) VisitPubrecPacket(_ packets.PubrecPacket) {
|
||||||
panic("not implemented") // TODO: Implement
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Session) VisitPubrelPacket(_ packets.PubrelPacket) {
|
func (s *Session) VisitPubrelPacket(_ packets.PubrelPacket) {
|
||||||
panic("not implemented") // TODO: Implement
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Session) VisitPubcompPacket(_ packets.PubcompPacket) {
|
func (s *Session) VisitPubcompPacket(_ packets.PubcompPacket) {
|
||||||
panic("not implemented") // TODO: Implement
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue