mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
38 lines
395 B
C++
38 lines
395 B
C++
#pragma once
|
|
|
|
#include "llarp/buffer.h"
|
|
|
|
#include <queue>
|
|
|
|
struct sendbuf_t
|
|
{
|
|
sendbuf_t(size_t s) : sz(s)
|
|
{
|
|
_buf = new byte_t[s];
|
|
}
|
|
|
|
~sendbuf_t()
|
|
{
|
|
if(_buf)
|
|
delete[] _buf;
|
|
}
|
|
|
|
size_t sz;
|
|
|
|
size_t
|
|
size() const
|
|
{
|
|
return sz;
|
|
}
|
|
|
|
byte_t *
|
|
data()
|
|
{
|
|
return _buf;
|
|
}
|
|
|
|
private:
|
|
byte_t *_buf = nullptr;
|
|
};
|
|
|
|
typedef std::queue< sendbuf_t * > sendqueue_t; |