kopia lustrzana https://github.com/Yakifo/amqtt
21 wiersze
851 B
Python
21 wiersze
851 B
Python
# Copyright (c) 2015 Nicolas JOUANIN
|
|
#
|
|
# See the file license.txt for copying permission.
|
|
from hbmqtt.mqtt.packet import MQTTPacket, MQTTFixedHeader, PacketType, MQTTVariableHeader, MQTTPayload
|
|
from hbmqtt.errors import HBMQTTException
|
|
|
|
class DisconnectPacket(MQTTPacket):
|
|
VARIABLE_HEADER = None
|
|
PAYLOAD = None
|
|
|
|
def __init__(self, fixed: MQTTFixedHeader=None, variable_header: MQTTVariableHeader=None, payload: MQTTPayload=None):
|
|
if fixed is None:
|
|
header = MQTTFixedHeader(PacketType.DISCONNECT, 0x00)
|
|
else:
|
|
if fixed.packet_type is not PacketType.DISCONNECT:
|
|
raise HBMQTTException("Invalid fixed packet type %s for DisconnectPacket init" % fixed.packet_type)
|
|
header = fixed
|
|
super().__init__(header)
|
|
self.variable_header = None
|
|
self.payload = None
|