From b35cd7685456b5f74b5580115cd92e3a9b71f23a Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Tue, 16 Feb 2021 18:19:24 -0800 Subject: [PATCH] Update StoreForwardPlugin.md --- docs/software/plugins/StoreForwardPlugin.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/software/plugins/StoreForwardPlugin.md b/docs/software/plugins/StoreForwardPlugin.md index e05171ed8..cb104314a 100644 --- a/docs/software/plugins/StoreForwardPlugin.md +++ b/docs/software/plugins/StoreForwardPlugin.md @@ -51,6 +51,10 @@ In this case, we have two routers separate by a great distance, each serving mul Q: How do we rejoin both fragmented networks? Do we care about messages that were unrouted between fagments? +## Identifing Delayed Messages + +When a message is replayed for a node, identify the packet as "Delayed". This will indicate that the message was not received in real time. + # Router Data Structures Structure of received messages: @@ -90,4 +94,4 @@ On every handled packet, if we have not heard from that sender in a period of ti # Designed limitations -The Store and Forward plugin will subscribe to specific packet types and channels and only save those. This will both reduce the amount of data we will need to store and reduce the overhead on the network. Eg: There's no need to replay ACK packets nor is there's no need to replay old location packets. \ No newline at end of file +The Store and Forward plugin will subscribe to specific packet types and channels and only save those. This will both reduce the amount of data we will need to store and reduce the overhead on the network. Eg: There's no need to replay ACK packets nor is there's no need to replay old location packets.