From 23fcbf55a95b4754e00eb2b939c78376434a31d0 Mon Sep 17 00:00:00 2001 From: Sergey Abramchuk Date: Tue, 3 Mar 2020 13:22:16 +0300 Subject: [PATCH] Add guard header for ovpncli --- Sources/OpenVPN3/include/ovpnapi.hpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Sources/OpenVPN3/include/ovpnapi.hpp diff --git a/Sources/OpenVPN3/include/ovpnapi.hpp b/Sources/OpenVPN3/include/ovpnapi.hpp new file mode 100644 index 0000000..687b0fd --- /dev/null +++ b/Sources/OpenVPN3/include/ovpnapi.hpp @@ -0,0 +1,27 @@ +// OpenVPN -- An application to securely tunnel IP networks +// over a single port, with support for SSL/TLS-based +// session authentication and key exchange, +// packet encryption, packet authentication, and +// packet compression. +// +// Copyright (C) 2012-2017 OpenVPN Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License Version 3 +// as published by the Free Software Foundation. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program in the COPYING file. +// If not, see . + +#ifndef OVPNAPI_H +#define OVPNAPI_H + +#include "ovpncli.hpp" + +#endif