0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-19 19:52:15 +02:00

Fix unit test with AuthStatus::Type enum fwd decl

Signed-off-by: Mark Deric <jmark@openvpn.net>
This commit is contained in:
Mark Deric 2022-07-15 15:52:06 -07:00
parent 1a5e4a7558
commit f2df99ccab

View File

@ -39,7 +39,18 @@
#include <openvpn/server/peerstats.hpp>
#include <openvpn/server/peeraddr.hpp>
#include <openvpn/auth/authcert.hpp>
#include <openvpn/auth/authstatusconst.hpp>
namespace openvpn
{
namespace AuthStatus
{
// Auth constants
enum Type : unsigned char;
}
}
// used by ipma_notify()
struct ovpn_tun_head_ipma;