pub trait ConfigTarget {
    fn setsid(&mut self) -> &mut Self;
    fn setlimit(&mut self, memlimit: u64) -> &mut Self;
    fn setstdin(&mut self, fd: RawFd, use_stdin: bool) -> &mut Self;
    fn setpipe(
        &mut self,
        st_read: RawFd,
        st_write: RawFd,
        ctl_read: RawFd,
        ctl_write: RawFd
    ) -> &mut Self; }
Expand description

Configure the target, limit, setsid, pipe_stdin, the code was borrowed from the Angora fuzzer

Required Methods

Sets the sid

Sets a mem limit

Sets the stdin

Sets the AFL forkserver pipes

Implementations on Foreign Types

Implementors