mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
0fe7153f6e
- Replace m_FlushWakeup with a call to the router's god mode pump method. m_FlushWakeup apparently isn't enough to get things out, and we can end up with incoming packets that don't get properly handled right away without it. - The shared_ptr around the ihophandler queues isn't needed and is just adding a layer of obfuscation; instead just exchange the list directly into the lambda. - Use std::exchange rather than swap - A couple other small code cleanups.
96 lines
2.4 KiB
C++
96 lines
2.4 KiB
C++
#pragma once
|
|
|
|
#include <llarp/crypto/types.hpp>
|
|
#include <llarp/util/types.hpp>
|
|
#include <llarp/crypto/encrypted_frame.hpp>
|
|
#include <llarp/util/decaying_hashset.hpp>
|
|
#include <llarp/messages/relay.hpp>
|
|
#include <vector>
|
|
|
|
#include <memory>
|
|
|
|
struct llarp_buffer_t;
|
|
|
|
namespace llarp
|
|
{
|
|
struct AbstractRouter;
|
|
|
|
namespace routing
|
|
{
|
|
struct IMessage;
|
|
}
|
|
|
|
namespace path
|
|
{
|
|
struct IHopHandler
|
|
{
|
|
using TrafficEvent_t = std::pair<std::vector<byte_t>, TunnelNonce>;
|
|
using TrafficQueue_t = std::list<TrafficEvent_t>;
|
|
|
|
virtual ~IHopHandler() = default;
|
|
|
|
virtual PathID_t
|
|
RXID() const = 0;
|
|
|
|
void
|
|
DecayFilters(llarp_time_t now);
|
|
|
|
virtual bool
|
|
Expired(llarp_time_t now) const = 0;
|
|
|
|
virtual bool
|
|
ExpiresSoon(llarp_time_t now, llarp_time_t dlt) const = 0;
|
|
|
|
/// send routing message and increment sequence number
|
|
virtual bool
|
|
SendRoutingMessage(const routing::IMessage& msg, AbstractRouter* r) = 0;
|
|
|
|
// handle data in upstream direction
|
|
virtual bool
|
|
HandleUpstream(const llarp_buffer_t& X, const TunnelNonce& Y, AbstractRouter*);
|
|
// handle data in downstream direction
|
|
virtual bool
|
|
HandleDownstream(const llarp_buffer_t& X, const TunnelNonce& Y, AbstractRouter*);
|
|
|
|
/// return timestamp last remote activity happened at
|
|
virtual llarp_time_t
|
|
LastRemoteActivityAt() const = 0;
|
|
|
|
virtual bool
|
|
HandleLRSM(uint64_t status, std::array<EncryptedFrame, 8>& frames, AbstractRouter* r) = 0;
|
|
|
|
uint64_t
|
|
NextSeqNo()
|
|
{
|
|
return m_SequenceNum++;
|
|
}
|
|
|
|
virtual void
|
|
FlushUpstream(AbstractRouter* r) = 0;
|
|
|
|
virtual void
|
|
FlushDownstream(AbstractRouter* r) = 0;
|
|
|
|
protected:
|
|
uint64_t m_SequenceNum = 0;
|
|
TrafficQueue_t m_UpstreamQueue;
|
|
TrafficQueue_t m_DownstreamQueue;
|
|
util::DecayingHashSet<TunnelNonce> m_UpstreamReplayFilter;
|
|
util::DecayingHashSet<TunnelNonce> m_DownstreamReplayFilter;
|
|
|
|
virtual void
|
|
UpstreamWork(TrafficQueue_t queue, AbstractRouter* r) = 0;
|
|
|
|
virtual void
|
|
DownstreamWork(TrafficQueue_t queue, AbstractRouter* r) = 0;
|
|
|
|
virtual void
|
|
HandleAllUpstream(std::vector<RelayUpstreamMessage> msgs, AbstractRouter* r) = 0;
|
|
virtual void
|
|
HandleAllDownstream(std::vector<RelayDownstreamMessage> msgs, AbstractRouter* r) = 0;
|
|
};
|
|
|
|
using HopHandler_ptr = std::shared_ptr<IHopHandler>;
|
|
} // namespace path
|
|
} // namespace llarp
|