diff --git a/coapthon/layers/blocklayer.py b/coapthon/layers/blocklayer.py index 451ba3c..8f698a3 100644 --- a/coapthon/layers/blocklayer.py +++ b/coapthon/layers/blocklayer.py @@ -141,10 +141,10 @@ class BlockLayer(object): item.num += 1 item.byte += item.size if len(item.payload) <= item.byte: - m = 0 + item.m = 0 else: - m = 1 - request.block1 = (item.num, m, item.size) + item.m = 1 + request.block1 = (item.num, item.m, item.size) elif transaction.response.block2 is not None: num, m, size = transaction.response.block2