mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-29 11:05:43 +00:00
25 lines
428 B
C++
25 lines
428 B
C++
#ifndef LLARP_MESSAGES_RELAY_ACK_HPP
|
|
#define LLARP_MESSAGES_RELAY_ACK_HPP
|
|
#include <llarp/link_message.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
struct LR_AckMessage : public ILinkMessage
|
|
{
|
|
LR_AckMessage(const RouterID& from);
|
|
|
|
~LR_AckMessage();
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* buf);
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
HandleMessage(llarp_router* router) const;
|
|
};
|
|
}
|
|
|
|
#endif
|