2018-06-22 00:25:30 +00:00
|
|
|
#include <llarp/time.h>
|
|
|
|
#include <llarp/bencode.hpp>
|
|
|
|
#include <llarp/messages/path_confirm.hpp>
|
2018-06-22 13:59:28 +00:00
|
|
|
#include <llarp/routing/handler.hpp>
|
2018-06-22 00:25:30 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace routing
|
|
|
|
{
|
2018-06-22 13:59:28 +00:00
|
|
|
PathConfirmMessage::PathConfirmMessage() : pathLifetime(0), pathCreated(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-22 00:25:30 +00:00
|
|
|
PathConfirmMessage::PathConfirmMessage(uint64_t lifetime)
|
|
|
|
: pathLifetime(lifetime), pathCreated(llarp_time_now_ms())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-22 13:59:28 +00:00
|
|
|
bool
|
|
|
|
PathConfirmMessage::DecodeKey(llarp_buffer_t key, llarp_buffer_t* val)
|
|
|
|
{
|
|
|
|
bool read = false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("L", pathLifetime, read, key, val))
|
|
|
|
return false;
|
2018-07-23 21:59:43 +00:00
|
|
|
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))
|
2018-06-22 13:59:28 +00:00
|
|
|
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;
|
2018-07-23 21:59:43 +00:00
|
|
|
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;
|
2018-07-23 21:59:43 +00:00
|
|
|
if(!BEncodeWriteDictInt("V", version, buf))
|
2018-06-22 00:25:30 +00:00
|
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-06-26 16:23:43 +00:00
|
|
|
PathConfirmMessage::HandleMessage(IMessageHandler* h, llarp_router* 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
|
|
|
|
} // namespace llarp
|