From adcf553f18c895bcd39c0c5e095eb30213fc9fa9 Mon Sep 17 00:00:00 2001 From: mamoniot Date: Wed, 22 Mar 2023 19:15:07 -0400 Subject: [PATCH] corrected comment --- zssp/src/zssp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zssp/src/zssp.rs b/zssp/src/zssp.rs index 3721b8868..f9ed6d4e8 100644 --- a/zssp/src/zssp.rs +++ b/zssp/src/zssp.rs @@ -537,7 +537,7 @@ impl Context { // Open hash lookup of just 2 slots. // By only checking 2 slots we avoid an expensive hash table lookup while also minimizing the chance that 2 offers collide. // To DOS, an adversary would either need to volumetrically spam the defrag table to keep all slots full - // or replay Alice's packet header before Alice's packet is fully assembled. + // or replay Alice's packet header from a spoofed physical path before Alice's packet is fully assembled. // Since Alice's packet header has a randomly generated counter value replaying it in time is very hard. let mut slot0 = self.defrag[idx0].lock().unwrap(); if slot0.counter() == hashed_counter {