Merge branch 'master' into development

Mesure-preliminaire
Giacomo Tanganelli 3 years ago committed by GitHub
commit c478d14b9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -178,7 +178,7 @@ class CoAP(object):
if opt.value == 26: if opt.value == 26:
return return
if self._receiver_thread is None or not self._receiver_thread.isAlive(): if self._receiver_thread is None or not self._receiver_thread.is_alive():
self._receiver_thread = threading.Thread(target=self.receive_datagram) self._receiver_thread = threading.Thread(target=self.receive_datagram)
self._receiver_thread.daemon = True self._receiver_thread.daemon = True
self._receiver_thread.start() self._receiver_thread.start()

@ -127,7 +127,7 @@ class Message(object):
self._token = value self._token = value
return return
if not isinstance(value, bytes): if not isinstance(value, bytes):
value = bytes(value) value = bytes(value, 'utf-8')
if len(value) > 256: if len(value) > 256:
raise AttributeError raise AttributeError
@ -645,7 +645,7 @@ class Message(object):
Delete the Block2 option. Delete the Block2 option.
""" """
self.del_option_by_number(defines.OptionRegistry.BLOCK2.number) self.del_option_by_number(defines.OptionRegistry.BLOCK2.number)
@property @property
def size1(self): def size1(self):
value = None value = None

Loading…
Cancel
Save