lokinet/llarp/messages/discard.hpp

125 lines
2.6 KiB
C++
Raw Normal View History

2018-09-06 20:31:58 +00:00
#ifndef LLARP_MESSAGES_DISCARD_HPP
#define LLARP_MESSAGES_DISCARD_HPP
2018-12-12 02:04:32 +00:00
#include <messages/link_message.hpp>
2018-12-12 02:04:32 +00:00
#include <routing/handler.hpp>
#include <routing/message.hpp>
#include <util/bencode.hpp>
2018-09-06 20:31:58 +00:00
namespace llarp
{
struct DiscardMessage final : public ILinkMessage
2018-09-06 20:31:58 +00:00
{
2018-12-20 16:49:05 +00:00
DiscardMessage() : ILinkMessage()
2018-09-06 20:31:58 +00:00
{
}
bool
BEncode(llarp_buffer_t* buf) const override
2018-09-06 20:31:58 +00:00
{
if (!bencode_start_dict(buf))
2018-09-06 20:31:58 +00:00
return false;
if (!bencode_write_bytestring(buf, "a", 1))
2018-09-06 20:31:58 +00:00
return false;
if (!bencode_write_bytestring(buf, "x", 1))
2018-09-06 20:31:58 +00:00
return false;
return bencode_end(buf);
}
2018-12-20 16:49:05 +00:00
void
Clear() override
{
version = 0;
2018-12-20 16:49:05 +00:00
}
2019-03-26 20:04:41 +00:00
const char*
Name() const override
{
return "Discard";
}
2018-09-06 20:31:58 +00:00
bool
2019-11-14 16:48:02 +00:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override
2018-09-06 20:31:58 +00:00
{
if (key == "a")
2019-11-14 16:48:02 +00:00
{
llarp_buffer_t strbuf;
if (!bencode_read_string(buf, &strbuf))
2019-11-14 16:48:02 +00:00
return false;
if (strbuf.sz != 1)
2019-11-14 16:48:02 +00:00
return false;
return *strbuf.cur == 'x';
}
2018-09-06 20:31:58 +00:00
return false;
}
bool
2020-02-23 02:21:38 +00:00
HandleMessage(AbstractRouter* /*router*/) const override
2018-09-06 20:31:58 +00:00
{
return true;
}
};
namespace routing
{
struct DataDiscardMessage final : public IMessage
{
PathID_t P;
2019-06-15 14:55:13 +00:00
DataDiscardMessage() = default;
2018-09-11 15:34:12 +00:00
DataDiscardMessage(const PathID_t& dst, uint64_t s) : P(dst)
{
S = s;
version = LLARP_PROTO_VERSION;
}
void
Clear() override
{
version = 0;
}
bool
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override
{
return h->HandleDataDiscardMessage(*this, r);
}
bool
DecodeKey(const llarp_buffer_t& k, llarp_buffer_t* buf) override
{
bool read = false;
if (!BEncodeMaybeReadDictEntry("P", P, read, k, buf))
return false;
if (!BEncodeMaybeReadDictInt("S", S, read, k, buf))
return false;
if (!BEncodeMaybeReadDictInt("V", version, read, k, buf))
return false;
return read;
}
bool
BEncode(llarp_buffer_t* buf) const override
{
if (!bencode_start_dict(buf))
return false;
if (!BEncodeWriteDictMsgType(buf, "A", "D"))
return false;
if (!BEncodeWriteDictEntry("P", P, buf))
return false;
if (!BEncodeWriteDictInt("S", S, buf))
return false;
if (!BEncodeWriteDictInt("V", version, buf))
return false;
return bencode_end(buf);
}
};
} // namespace routing
2018-09-06 20:31:58 +00:00
} // namespace llarp
#endif