mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
8dd1358cc6
* introset path haodver tweaks * improve warn/error messages to convey more information * dont block on queue insertion * reset convotag on decrypt/verify fail * add multiple ready hooks on outbound context * lookup introsets from close routers on dht * continue to tick dead sessions so they expire their paths * introset spacing * reduce lns lookup diversity requirement for speed * add a function to send reset convotag message * only have 1 outbound context at a time
82 lines
2.1 KiB
C++
82 lines
2.1 KiB
C++
#include "intro.hpp"
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
util::StatusObject
|
|
Introduction::ExtractStatus() const
|
|
{
|
|
util::StatusObject obj{
|
|
{"router", router.ToHex()},
|
|
{"path", pathID.ToHex()},
|
|
{"expiresAt", to_json(expiresAt)},
|
|
{"latency", to_json(latency)},
|
|
{"version", uint64_t(version)}};
|
|
return obj;
|
|
}
|
|
|
|
bool
|
|
Introduction::DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf)
|
|
{
|
|
bool read = false;
|
|
if (!BEncodeMaybeReadDictEntry("k", router, read, key, buf))
|
|
return false;
|
|
if (!BEncodeMaybeReadDictInt("l", latency, read, key, buf))
|
|
return false;
|
|
if (!BEncodeMaybeReadDictEntry("p", pathID, read, key, buf))
|
|
return false;
|
|
if (!BEncodeMaybeReadDictInt("v", version, read, key, buf))
|
|
return false;
|
|
if (!BEncodeMaybeReadDictInt("x", expiresAt, read, key, buf))
|
|
return false;
|
|
return read;
|
|
}
|
|
|
|
bool
|
|
Introduction::BEncode(llarp_buffer_t* buf) const
|
|
{
|
|
if (!bencode_start_dict(buf))
|
|
return false;
|
|
|
|
if (!BEncodeWriteDictEntry("k", router, buf))
|
|
return false;
|
|
if (latency > 0s)
|
|
{
|
|
if (!BEncodeWriteDictInt("l", latency.count(), buf))
|
|
return false;
|
|
}
|
|
if (!BEncodeWriteDictEntry("p", pathID, buf))
|
|
return false;
|
|
if (!BEncodeWriteDictInt("v", version, buf))
|
|
return false;
|
|
if (!BEncodeWriteDictInt("x", expiresAt.count(), buf))
|
|
return false;
|
|
return bencode_end(buf);
|
|
}
|
|
|
|
void
|
|
Introduction::Clear()
|
|
{
|
|
router.Zero();
|
|
pathID.Zero();
|
|
latency = 0s;
|
|
expiresAt = 0s;
|
|
}
|
|
|
|
std::ostream&
|
|
Introduction::print(std::ostream& stream, int level, int spaces) const
|
|
{
|
|
const RouterID r{router};
|
|
Printer printer(stream, level, spaces);
|
|
printer.printAttribute("k", r.ToString());
|
|
printer.printAttribute("l", latency.count());
|
|
printer.printAttribute("p", pathID);
|
|
printer.printAttribute("v", version);
|
|
printer.printAttribute("x", expiresAt.count());
|
|
|
|
return stream;
|
|
}
|
|
} // namespace service
|
|
} // namespace llarp
|