mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
21a2ffdeaf
* add more stuff for hidden service dht
133 lines
3.2 KiB
C++
133 lines
3.2 KiB
C++
#include <llarp/bencode.hpp>
|
|
#include <llarp/messages/relay.hpp>
|
|
|
|
#include "router.hpp"
|
|
|
|
namespace llarp
|
|
{
|
|
RelayUpstreamMessage::RelayUpstreamMessage(const RouterID &from)
|
|
: ILinkMessage(from)
|
|
{
|
|
}
|
|
|
|
RelayUpstreamMessage::RelayUpstreamMessage() : ILinkMessage()
|
|
{
|
|
}
|
|
|
|
RelayUpstreamMessage::~RelayUpstreamMessage()
|
|
{
|
|
}
|
|
|
|
bool
|
|
RelayUpstreamMessage::BEncode(llarp_buffer_t *buf) const
|
|
{
|
|
if(!bencode_start_dict(buf))
|
|
return false;
|
|
if(!BEncodeWriteDictMsgType(buf, "a", "u"))
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("p", pathid, buf))
|
|
return false;
|
|
if(!BEncodeWriteDictInt(buf, "v", LLARP_PROTO_VERSION))
|
|
return false;
|
|
if(!BEncodeWriteDictEntry("x", X, buf))
|
|
return false;
|
|
if(!BEncodeWriteDictEntry("y", Y, buf))
|
|
return false;
|
|
return bencode_end(buf);
|
|
}
|
|
|
|
bool
|
|
RelayUpstreamMessage::DecodeKey(llarp_buffer_t key, llarp_buffer_t *buf)
|
|
{
|
|
bool read = false;
|
|
if(!BEncodeMaybeReadDictEntry("p", pathid, read, key, buf))
|
|
return false;
|
|
if(!BEncodeMaybeReadVersion("v", version, LLARP_PROTO_VERSION, read, key,
|
|
buf))
|
|
return false;
|
|
if(!BEncodeMaybeReadDictEntry("x", X, read, key, buf))
|
|
return false;
|
|
if(!BEncodeMaybeReadDictEntry("y", Y, read, key, buf))
|
|
return false;
|
|
return read;
|
|
}
|
|
|
|
bool
|
|
RelayUpstreamMessage::HandleMessage(llarp_router *router) const
|
|
{
|
|
auto path = router->paths.GetByDownstream(remote, pathid);
|
|
if(path)
|
|
{
|
|
return path->HandleUpstream(X.Buffer(), Y, router);
|
|
}
|
|
else
|
|
{
|
|
llarp::LogWarn("No such path downstream=", remote, " pathid=", pathid);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
RelayDownstreamMessage::RelayDownstreamMessage(const RouterID &from)
|
|
: ILinkMessage(from)
|
|
{
|
|
}
|
|
|
|
RelayDownstreamMessage::RelayDownstreamMessage() : ILinkMessage()
|
|
{
|
|
}
|
|
|
|
RelayDownstreamMessage::~RelayDownstreamMessage()
|
|
{
|
|
}
|
|
bool
|
|
RelayDownstreamMessage::BEncode(llarp_buffer_t *buf) const
|
|
{
|
|
if(!bencode_start_dict(buf))
|
|
return false;
|
|
if(!BEncodeWriteDictMsgType(buf, "a", "d"))
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("p", pathid, buf))
|
|
return false;
|
|
if(!BEncodeWriteDictInt(buf, "v", LLARP_PROTO_VERSION))
|
|
return false;
|
|
if(!BEncodeWriteDictEntry("x", X, buf))
|
|
return false;
|
|
if(!BEncodeWriteDictEntry("y", Y, buf))
|
|
return false;
|
|
return bencode_end(buf);
|
|
}
|
|
|
|
bool
|
|
RelayDownstreamMessage::DecodeKey(llarp_buffer_t key, llarp_buffer_t *buf)
|
|
{
|
|
bool read = false;
|
|
if(!BEncodeMaybeReadDictEntry("p", pathid, read, key, buf))
|
|
return false;
|
|
if(!BEncodeMaybeReadVersion("v", version, LLARP_PROTO_VERSION, read, key,
|
|
buf))
|
|
return false;
|
|
if(!BEncodeMaybeReadDictEntry("x", X, read, key, buf))
|
|
return false;
|
|
if(!BEncodeMaybeReadDictEntry("y", Y, read, key, buf))
|
|
return false;
|
|
return read;
|
|
}
|
|
|
|
bool
|
|
RelayDownstreamMessage::HandleMessage(llarp_router *router) const
|
|
{
|
|
auto path = router->paths.GetByUpstream(remote, pathid);
|
|
if(path)
|
|
{
|
|
return path->HandleDownstream(X.Buffer(), Y, router);
|
|
}
|
|
else
|
|
{
|
|
llarp::LogWarn("No such path upstream=", remote, " pathid=", pathid);
|
|
}
|
|
return false;
|
|
}
|
|
} // namespace llarp
|