Add/Update logs in MeshForwarder class (#1649)

This commit contains the following changes:

- Adds new logs when a new message is being prepared for indirect tx
  to a sleepy child.

- Adds new logs when an Ipv6 message being dropped from reassembly list
  due to reassembly timeout or missing fragments (in case of MTD).
This commit is contained in:
Abtin Keshavarzian
2017-04-25 10:24:58 -07:00
committed by Jonathan Hui
parent 5aecd115ee
commit 6043cd8f1b
5 changed files with 125 additions and 20 deletions
+5
View File
@@ -194,6 +194,11 @@ typedef enum ThreadError
*/
kThreadError_Duplicated = 31,
/**
* Message is being dropped from reassembly list due to timeout.
*/
kThreadError_ReassemblyTimeout = 32,
kThreadError_Error = 255,
} ThreadError;