/* * SRT - Secure, Reliable, Transport * Copyright (c) 2018 Haivision Systems Inc. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * */ #ifndef INC_SRT_LOGSUPPORT_HPP #define INC_SRT_LOGSUPPORT_HPP #include #include #include "../srtcore/srt.h" #include "../srtcore/logging_api.h" srt_logging::LogLevel::type SrtParseLogLevel(std::string level); std::set SrtParseLogFA(std::string fa, std::set* punknown = nullptr); const std::map SrtLogFAList(); SRT_API extern std::map srt_level_names; struct LogFANames { std::map namemap; void Install(std::string upname, int value); LogFANames(); }; #endif