mutators not done yet
This commit is contained in:
parent
c0e803baae
commit
a63ecf3c1b
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user