From 10c1ce9d66a9a059168998335194284b6bbac4a5 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Thu, 29 Apr 2021 12:07:12 +0200 Subject: [PATCH] added bunny --- README.md | 2 ++ libafl/src/bolts/llmp.rs | 7 +++++++ 2 files changed, 9 insertions(+) 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 {