mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
51 lines
855 B
C++
51 lines
855 B
C++
#ifndef LLARP_EV_VPNIO_HPP
|
|
#define LLARP_EV_VPNIO_HPP
|
|
#include <net/ip.hpp>
|
|
#include <util/thread/queue.hpp>
|
|
#include <functional>
|
|
|
|
struct llarp_main;
|
|
struct llarp_vpn_io;
|
|
|
|
struct llarp_vpn_pkt_queue
|
|
{
|
|
using Packet_t = llarp::net::IPPacket;
|
|
llarp::thread::Queue<Packet_t> queue;
|
|
|
|
llarp_vpn_pkt_queue() : queue(1024){};
|
|
~llarp_vpn_pkt_queue() = default;
|
|
};
|
|
|
|
struct llarp_vpn_pkt_writer : public llarp_vpn_pkt_queue
|
|
{
|
|
};
|
|
|
|
struct llarp_vpn_pkt_reader : public llarp_vpn_pkt_queue
|
|
{
|
|
};
|
|
|
|
struct llarp_vpn_io_impl
|
|
{
|
|
llarp_vpn_io_impl(llarp_main* p, llarp_vpn_io* io) : ptr(p), parent(io)
|
|
{
|
|
}
|
|
~llarp_vpn_io_impl() = default;
|
|
|
|
llarp_main* ptr;
|
|
llarp_vpn_io* parent;
|
|
|
|
llarp_vpn_pkt_writer writer;
|
|
llarp_vpn_pkt_reader reader;
|
|
|
|
void
|
|
AsyncClose();
|
|
|
|
private:
|
|
void
|
|
CallSafe(std::function<void(void)> f);
|
|
|
|
void
|
|
Expunge();
|
|
};
|
|
|
|
#endif |