Enum libp2p_gossipsub::ValidationMode
source · pub enum ValidationMode {
Strict,
Permissive,
Anonymous,
None,
}
Expand description
The types of message validation that can be employed by gossipsub.
Variants§
Strict
This is the default setting. This requires the message author to be a valid PeerId
and to
be present as well as the sequence number. All messages must have valid signatures.
NOTE: This setting will reject messages from nodes using
crate::behaviour::MessageAuthenticity::Anonymous
and all messages that do not have
signatures.
Permissive
This setting permits messages that have no author, sequence number or signature. If any of these fields exist in the message these are validated.
Anonymous
This setting requires the author, sequence number and signature fields of a message to be empty. Any message that contains these fields is considered invalid.
None
This setting does not check the author, sequence number or signature fields of incoming messages. If these fields contain data, they are simply ignored.
NOTE: This setting will consider messages with invalid signatures as valid messages.
Trait Implementations§
source§impl Clone for ValidationMode
impl Clone for ValidationMode
source§fn clone(&self) -> ValidationMode
fn clone(&self) -> ValidationMode
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more