0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 04:02:15 +02:00
openvpn3/openvpn/log/logthread.hpp
Mark Deric 8558312d92 Fix client logging problems
A refactoring of the logging code in commit 9ffa263b removed
conventional #ifndef header guards and replaced them with #pragma
once.  Some consumers of the code used the header #defines to guide
their behavior.  The missing guards caused the consumers to log
incorrectly.  The fix was to still rely on the #pragma once for
guarding, but to reinstate the #defines from the original headers.

Signed-off-by: Mark Deric <jmark@openvpn.net>
2024-03-28 11:27:23 +00:00

35 lines
1.6 KiB
C++

// 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-2024 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 <http://www.gnu.org/licenses/>.
// This is a general-purpose logging framework that allows for OPENVPN_LOG and
// OPENVPN_LOG_NTNL macros to dispatch logging data to a thread-local handler.
#pragma once
// the following define was part of the header guard that was replaced by the
// "#pragma once". Apparently, some logging consumers check that this macro is
// defined and their logging breaks if it is not. Adding it back here as the
// path of least resistance to fix; but IMO, the macro name should be better.
#define OPENVPN_LOG_LOGTHREAD_H
#include "openvpn/log/logthread_macros.hpp"
#include "openvpn/log/logthread_class.hpp"