mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-18 13:09:01 +02:00
19 lines
371 B
C++
19 lines
371 B
C++
#ifndef BOSS_MSG_PROBEACTIVELY_HPP
|
|
#define BOSS_MSG_PROBEACTIVELY_HPP
|
|
|
|
#include"Ln/NodeId.hpp"
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::ProbeActively
|
|
*
|
|
* @brief requests the active prober to initiate an attempt
|
|
* at actively probing the given peer.
|
|
*/
|
|
struct ProbeActively {
|
|
Ln::NodeId peer;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* !defined(BOSS_MSG_PROBEACTIVELY_HPP) */
|