From fc464d4078d0ef30ef2de095116bd754f9646b83 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Sun, 10 Sep 2023 20:56:19 +0200 Subject: [PATCH] ref the chapter in CFDP --- satrs-core/src/cfdp/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/satrs-core/src/cfdp/mod.rs b/satrs-core/src/cfdp/mod.rs index a54541f..7604dfb 100644 --- a/satrs-core/src/cfdp/mod.rs +++ b/satrs-core/src/cfdp/mod.rs @@ -27,12 +27,12 @@ pub enum EntityType { /// transmission mode. /// /// For the sending entity, this timer determines the expiry period for declaring a check limit -/// fault after sending an EOF PDU with requested closure. This allows a timeout of the -/// transfer. +/// fault after sending an EOF PDU with requested closure. This allows a timeout of the transfer. +/// Also see 4.6.3.2 of the CFDP standard. /// /// For the receiving entity, this timer determines the expiry period for incrementing a check /// counter after an EOF PDU is received for an incomplete file transfer. This allows out-of-order -/// reception of file data PDUs and EOF PDUs. +/// reception of file data PDUs and EOF PDUs. Also see 4.6.3.3 of the CFDP standard. pub trait CheckTimerProvider { fn has_expired(&self) -> bool; }