Skip to content

Commit

Permalink
rename stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
tokatoka committed Mar 25, 2024
1 parent bcea8c2 commit 445ac60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion libafl/src/events/llmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ where
Ok(llmp::LlmpMsgHookResult::ForwardToClients)
}
} else {
monitor.display("Broker", ClientId(0));
monitor.display("Broker Heartbeat", ClientId(0));
Ok(llmp::LlmpMsgHookResult::Handled)
}
},
Expand Down Expand Up @@ -249,6 +249,7 @@ where
if id == client_id {
// do not update executions for forwarded messages, otherwise we loose the total order
// as a forwarded msg with a lower executions may arrive after a stats msg with an higher executions
// this also means when you wrap this event manger with centralized EM, you will **NOT** get executions update with the new tc message
client.update_executions(*executions, *time);
}
monitor.display(event.name(), id);
Expand Down
6 changes: 3 additions & 3 deletions libafl/src/events/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -386,12 +386,12 @@ where
time: _,
executions: _,
phantom: _,
}
| Event::UpdateUserStats {
} => "Client Heartbeat",
Event::UpdateUserStats {
name: _,
value: _,
phantom: _,
} => "Stats",
} => "UserStats",
#[cfg(feature = "introspection")]
Event::UpdatePerfMonitor {
time: _,
Expand Down

0 comments on commit 445ac60

Please sign in to comment.