mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
30 lines
471 B
C++
30 lines
471 B
C++
#include <llarp/messages/relay_commit.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
LR_CommitMessage::~LR_CommitMessage()
|
|
{
|
|
}
|
|
|
|
bool
|
|
LR_CommitMessage::DecodeKey(llarp_buffer_t key, llarp_buffer_t* buf)
|
|
{
|
|
// TODO: implement
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
LR_CommitMessage::BEncode(llarp_buffer_t* buf) const
|
|
{
|
|
// TODO: implement
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
LR_CommitMessage::HandleMessage(llarp_router* router) const
|
|
{
|
|
// TODO: implement
|
|
return false;
|
|
}
|
|
}
|