2019-06-17 23:19:39 +00:00
|
|
|
#include <path/ihophandler.hpp>
|
2019-09-16 16:21:21 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace path
|
|
|
|
{
|
|
|
|
// handle data in upstream direction
|
|
|
|
bool
|
|
|
|
IHopHandler::HandleUpstream(const llarp_buffer_t& X, const TunnelNonce& Y,
|
|
|
|
AbstractRouter*)
|
|
|
|
{
|
|
|
|
if(m_UpstreamQueue == nullptr)
|
|
|
|
m_UpstreamQueue = std::make_shared< TrafficQueue_t >();
|
|
|
|
m_UpstreamQueue->emplace_back();
|
|
|
|
auto& pkt = m_UpstreamQueue->back();
|
|
|
|
pkt.first.resize(X.sz);
|
|
|
|
std::copy_n(X.base, X.sz, pkt.first.begin());
|
|
|
|
pkt.second = Y;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// handle data in downstream direction
|
|
|
|
bool
|
|
|
|
IHopHandler::HandleDownstream(const llarp_buffer_t& X, const TunnelNonce& Y,
|
|
|
|
AbstractRouter*)
|
|
|
|
{
|
|
|
|
if(m_DownstreamQueue == nullptr)
|
|
|
|
m_DownstreamQueue = std::make_shared< TrafficQueue_t >();
|
|
|
|
m_DownstreamQueue->emplace_back();
|
|
|
|
auto& pkt = m_DownstreamQueue->back();
|
|
|
|
pkt.first.resize(X.sz);
|
|
|
|
std::copy_n(X.base, X.sz, pkt.first.begin());
|
|
|
|
pkt.second = Y;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} // namespace path
|
2020-01-03 11:04:47 +00:00
|
|
|
} // namespace llarp
|