Enum libp2p_gossipsub::ValidationMode [−][src]
pub enum ValidationMode { Strict, Permissive, Anonymous, None, }
The types of message validation that can be employed by gossipsub.
Variants
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.
This setting permits messages that have no author, sequence number or signature. If any of these fields exist in the message these are validated.
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.
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
impl Clone for ValidationMode
[src]
impl Clone for ValidationMode
[src]