mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-20 13:28:15 +02:00
20 lines
387 B
C++
20 lines
387 B
C++
#ifndef BOSS_MSG_REQUESTPEERFROMSCID_HPP
|
|
#define BOSS_MSG_REQUESTPEERFROMSCID_HPP
|
|
|
|
#include"Ln/Scid.hpp"
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::RequestPeerFromScid
|
|
*
|
|
* @brief requests the peer `Ln::NodeId` from the
|
|
* given `Ln::Scid`.
|
|
*/
|
|
struct RequestPeerFromScid {
|
|
void* requester;
|
|
Ln::Scid scid;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* !defined(BOSS_MSG_REQUESTPEERFROMSCID_HPP) */
|