mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
45 lines
769 B
C++
45 lines
769 B
C++
#ifndef LLARP_BUFFER_HPP
|
|
#define LLARP_BUFFER_HPP
|
|
|
|
#include <llarp/buffer.h>
|
|
|
|
namespace llarp
|
|
{
|
|
template < typename T >
|
|
llarp_buffer_t
|
|
StackBuffer(T& stack)
|
|
{
|
|
llarp_buffer_t buff;
|
|
buff.base = &stack[0];
|
|
buff.cur = buff.base;
|
|
buff.sz = sizeof(stack);
|
|
return buff;
|
|
}
|
|
|
|
/** initialize llarp_buffer_t from container */
|
|
template < typename T >
|
|
llarp_buffer_t
|
|
Buffer(T& t)
|
|
{
|
|
llarp_buffer_t buff;
|
|
buff.base = &t[0];
|
|
buff.cur = buff.base;
|
|
buff.sz = t.size();
|
|
return buff;
|
|
}
|
|
|
|
template < typename T >
|
|
llarp_buffer_t
|
|
ConstBuffer(const T& t)
|
|
{
|
|
llarp_buffer_t buff;
|
|
buff.base = (byte_t*)&t[0];
|
|
buff.cur = buff.base;
|
|
buff.sz = t.size();
|
|
return buff;
|
|
}
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|