mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
19e3b9c642
* begin lokinet api
59 lines
951 B
C++
59 lines
951 B
C++
#pragma once
|
|
|
|
#include "buffer.hpp"
|
|
#include "llarp/time.h"
|
|
#include "llarp/types.h"
|
|
|
|
#include <vector>
|
|
|
|
struct InboundMessage
|
|
{
|
|
uint64_t msgid;
|
|
std::vector< byte_t > msg;
|
|
llarp_time_t queued = 0;
|
|
|
|
InboundMessage(uint64_t id, const std::vector< byte_t > &m)
|
|
: msgid(id), msg(m)
|
|
{
|
|
}
|
|
|
|
bool
|
|
operator<(const InboundMessage &other) const
|
|
{
|
|
// order in ascending order for codel queue
|
|
return msgid < other.msgid;
|
|
}
|
|
|
|
llarp_buffer_t
|
|
Buffer()
|
|
{
|
|
return llarp::Buffer< decltype(msg) >(msg);
|
|
}
|
|
|
|
struct GetTime
|
|
{
|
|
llarp_time_t
|
|
operator()(const InboundMessage *msg)
|
|
{
|
|
return msg->queued;
|
|
}
|
|
};
|
|
|
|
struct OrderCompare
|
|
{
|
|
bool
|
|
operator()(const InboundMessage *left, const InboundMessage *right) const
|
|
{
|
|
return left->msgid < right->msgid;
|
|
}
|
|
};
|
|
|
|
struct PutTime
|
|
{
|
|
void
|
|
operator()(InboundMessage *msg)
|
|
{
|
|
msg->queued = llarp_time_now_ms();
|
|
}
|
|
};
|
|
}; |