mutators not done yet

This commit is contained in:
Dominik Maier 2020-10-27 15:12:33 +01:00
parent c0e803baae
commit a63ecf3c1b

View File

@ -1,15 +1,16 @@
use std::Vec; use std::Vec;
use crate::mutators::Mutator; use crate::mutators::Mutator;
use crate::inputs::Input; use crate::inputs::Input;
use c
struct MutationalStage { pub struct MutationalStage {
mutators: Vec<Box<dyn Mutator>>; mutators: Vec<Box<dyn Mutator>>;
} }
impl Stage for MutationalStage { impl Stage for MutationalStage {
fn Perform(&mut self, input: &Input, entry: &mut Entry) -> Result<(), AflError> { fn Perform(&mut self, input: &Input, entry: &mut Entry) -> Result<(), AflError> {
// TODO: Implement me
Err(AflError::Unknown);
} }
} }