diff --git a/README.md b/README.md index f27948a2de..1735986603 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # LibAFL, the fuzzer library. + AFL++ Logo + Advanced Fuzzing Library - Slot your own fuzzers together and extend their features using Rust. LibAFL is written and maintained by Andrea Fioraldi and Dominik Maier . diff --git a/libafl/src/bolts/llmp.rs b/libafl/src/bolts/llmp.rs index 544e941d1d..ac30ec9ce5 100644 --- a/libafl/src/bolts/llmp.rs +++ b/libafl/src/bolts/llmp.rs @@ -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 {