added bunny

This commit is contained in:
Dominik Maier 2021-04-29 12:07:12 +02:00
parent 9aa3f25287
commit 10c1ce9d66
2 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,7 @@
# LibAFL, the fuzzer library.
<img align="right" src="https://github.com/AFLplusplus/Website/raw/master/static/logo_256x256.png" alt="AFL++ Logo">
Advanced Fuzzing Library - Slot your own fuzzers together and extend their features using Rust.
LibAFL is written and maintained by Andrea Fioraldi <andreafioraldi@gmail.com> and Dominik Maier <mail@dmnk.co>.

View File

@ -125,6 +125,13 @@ static mut GLOBAL_SIGHANDLER_STATE: LlmpBrokerSignalHandler = LlmpBrokerSignalHa
/// TAGs used thorughout llmp
pub type Tag = u32;
/// If an llmp connection is local - use sharedmaps
/// or remote (broker2broker) - forwarded via tcp
pub enum TcpConnectionType {
LocalClient {},
RemoteBroker,
}
/// Abstraction for listeners
#[cfg(feature = "std")]
pub enum Listener {