Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions daemon/table/dead-nonce-list.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace nfd {
*
* The Dead Nonce List is a global table that supplements the PIT for loop detection.
* When a Nonce is erased (dead) from a PIT entry, the Nonce and the Interest Name are added to
* the Dead Nonce List and kept for a duration in which most loops are expected to have occured.
* the Dead Nonce List and kept for a duration in which most loops are expected to have occurred.
*
* To reduce memory usage, the Interest Name and Nonce are stored as a 64-bit hash.
* The probability of false positives (a non-looping Interest considered as looping) is small
Expand All @@ -59,7 +59,7 @@ class DeadNonceList : noncopyable
/**
* \brief Constructs the Dead Nonce List
* \param lifetime expected lifetime of each nonce, must be no less than #MIN_LIFETIME.
* This should be set to a duration over which most loops would have occured.
* This should be set to a duration over which most loops would have occurred.
* A loop cannot be detected if the total delay of the cycle is greater than lifetime.
* \throw std::invalid_argument if lifetime is less than #MIN_LIFETIME
*/
Expand Down