lokinet/llarp/routing/path_confirm.cpp

63 lines
1.7 KiB
C++
Raw Normal View History

#include <messages/path_confirm.hpp>
2018-12-12 02:04:32 +00:00
#include <routing/handler.hpp>
#include <util/bencode.hpp>
#include <util/time.hpp>
2018-06-22 00:25:30 +00:00
namespace llarp
{
namespace routing
{
PathConfirmMessage::PathConfirmMessage() : pathLifetime(0), pathCreated(0)
{
}
2018-06-22 00:25:30 +00:00
PathConfirmMessage::PathConfirmMessage(uint64_t lifetime)
2018-11-19 22:45:37 +00:00
: pathLifetime(lifetime), pathCreated(time_now_ms())
2018-06-22 00:25:30 +00:00
{
}
bool
2019-02-05 00:41:33 +00:00
PathConfirmMessage::DecodeKey(const llarp_buffer_t& key,
llarp_buffer_t* val)
{
bool read = false;
if(!BEncodeMaybeReadDictInt("L", pathLifetime, read, key, val))
return false;
if(!BEncodeMaybeReadDictInt("S", S, read, key, val))
return false;
if(!BEncodeMaybeReadDictInt("T", pathCreated, read, key, val))
return false;
if(!BEncodeMaybeReadDictInt("V", version, read, key, val))
return false;
return read;
}
2018-06-22 00:25:30 +00:00
bool
PathConfirmMessage::BEncode(llarp_buffer_t* buf) const
{
if(!bencode_start_dict(buf))
return false;
if(!BEncodeWriteDictMsgType(buf, "A", "P"))
return false;
if(!BEncodeWriteDictInt("L", pathLifetime, buf))
return false;
if(!BEncodeWriteDictInt("S", S, buf))
return false;
if(!BEncodeWriteDictInt("T", pathCreated, buf))
2018-06-22 00:25:30 +00:00
return false;
if(!BEncodeWriteDictInt("V", version, buf))
2018-06-22 00:25:30 +00:00
return false;
return bencode_end(buf);
}
bool
PathConfirmMessage::HandleMessage(IMessageHandler* h,
AbstractRouter* r) const
2018-06-22 00:25:30 +00:00
{
2018-06-26 16:23:43 +00:00
return h && h->HandlePathConfirmMessage(this, r);
2018-06-22 00:25:30 +00:00
}
} // namespace routing
2018-11-19 22:45:37 +00:00
} // namespace llarp