You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/api/messages/keepalive.cpp

18 lines
274 B
C++

#include <llarp/api/messages.hpp>
namespace llarp
{
namespace api
{
KeepAliveMessage::~KeepAliveMessage()
{
}
bool
KeepAliveMessage::EncodeParams(llarp_buffer_t *buf) const
{
return true;
}
} // namespace api
} // namespace llarp