mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
28 lines
823 B
C++
28 lines
823 B
C++
#pragma once
|
|
|
|
#include <llarp.hpp>
|
|
#include "vpn_platform.hpp"
|
|
#include "route_manager.hpp"
|
|
|
|
namespace llarp::apple
|
|
{
|
|
struct Context : public llarp::Context
|
|
{
|
|
std::shared_ptr<vpn::Platform>
|
|
makeVPNPlatform() override
|
|
{
|
|
return std::make_shared<VPNPlatform>(
|
|
*this, m_PacketWriter, m_OnReadable, route_callbacks, callback_context);
|
|
}
|
|
|
|
// Callbacks that must be set for packet handling *before* calling Setup/Configure/Run; the main
|
|
// point of these is to get passed through to VPNInterface, which will be called during setup,
|
|
// after construction.
|
|
VPNInterface::packet_write_callback m_PacketWriter;
|
|
VPNInterface::on_readable_callback m_OnReadable;
|
|
llarp_route_callbacks route_callbacks{};
|
|
void* callback_context = nullptr;
|
|
};
|
|
|
|
} // namespace llarp::apple
|