From 2c139854050bb17ef5e0386ce48fa1534b02da0d Mon Sep 17 00:00:00 2001 From: realaravinth Date: Mon, 15 Mar 2021 22:39:09 +0530 Subject: [PATCH] deadlinks --- src/lib.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index d70173c..ce7c590 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,12 +31,14 @@ //! - Difficulty(Factor): Minimum ammount of work that a client must do to make a valid //! request. //! - [Defense]: A datatype that various visitor-difficulty mappigns -//! - [Visitor][crate::mcaptcha::AddVisitor]: Smallest unit of traffic, usually a single request. -//! The more you have, the busier your service is. Determines mCaptcha defense defense +//! - Visitor: Smallest unit of traffic, usually a single request. The more you have, the busier +//! your service is. Determines mCaptcha defense defense //! - Visitor threshold: The threshold at which [MCaptcha] will adjust defense defense //! - [Cache][crate::cache] : A datatype that implements [Save][crate::cache::Save]. Used to store //! PoW requirements to defend against replay attacks and dictionary attacks. -//! - [Master][crate::master::Master]: A datatype that manages [MCaptcha][crate::mcaptcha::MCaptcha] actors. Works like a DNS for [Visitor][crate::mcaptcha::Visitor] messages. +//! - [Master][crate::master::Master]: A datatype that manages +//! [MCaptcha][crate::mcaptcha::MCaptcha] actors. Works like a DNS for +//! [AddVisitor][crate::mcaptcha::AddVisitor] messages. //! - [System][crate::system::System]: mCaptcha system that manages cache, master and provides //! useful abstractions. An mCaptcha system/instance can have only a single //! [System][crate::system::System]