X-Git-Url: https://git.syn-net.org/debian/?a=blobdiff_plain;f=src%2FlogTargets.h;h=a42d2c6c5205ec65a2a850ff2b944c0b1b78b24d;hb=bd02a5f6be4815d46524d613f727199ca756c971;hp=64ad945dd007fa5d6557b0ce05651aa4f7e8eea4;hpb=058ae090a970436caec3b3059e9e18b310dd6b0d;p=anytun.git diff --git a/src/logTargets.h b/src/logTargets.h index 64ad945..a42d2c6 100644 --- a/src/logTargets.h +++ b/src/logTargets.h @@ -11,14 +11,15 @@ * tunneling and relaying of packets of any protocol. * * - * Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl, + * Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl, * Christian Pointner * * This file is part of Anytun. * * Anytun is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 3 as - * published by the Free Software Foundation. + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. * * Anytun is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -29,8 +30,8 @@ * along with anytun. If not, see . */ -#ifndef _LOG_TARGETS_H_ -#define _LOG_TARGETS_H_ +#ifndef ANYTUN_logTargets_h_INCLUDED +#define ANYTUN_logTargets_h_INCLUDED #include #include @@ -63,7 +64,7 @@ public: int getMaxPrio() { return max_prio; }; void setMaxPrio(int p) { max_prio = p; }; - virtual void log(std::string msg, int prio) = 0; + virtual void log(std::string msg, int prio) = 0; protected: bool opened; @@ -71,11 +72,12 @@ protected: int max_prio; }; -class LogTargetList +class LogTargetList { public: - typedef enum { TARGET_UNKNOWN, TARGET_SYSLOG, TARGET_FILE, - TARGET_STDOUT, TARGET_STDERR, TARGET_WINEVENTLOG } target_type_t; + typedef enum { TARGET_UNKNOWN, TARGET_SYSLOG, TARGET_FILE, + TARGET_STDOUT, TARGET_STDERR, TARGET_WINEVENTLOG + } target_type_t; static target_type_t targetTypeFromString(std::string type); static std::string targetTypeToString(target_type_t type); @@ -84,7 +86,7 @@ public: LogTarget* add(std::string conf); LogTarget* add(target_type_t type, int prio, std::string conf); void clear(); - + void log(std::string msg, int prio); private: @@ -125,14 +127,14 @@ public: void open(); void close(); - void log(std::string msg, int prio); + void log(std::string msg, int prio); static bool duplicateAllowed() { return false; }; - LogTargetSyslog& setLogName(std::string l); + LogTargetSyslog& setLogName(std::string l); std::string getLogName() const { return logname; } LogTargetSyslog& setFacility(int f); int getFacility() const { return facility; } - + private: std::string logname; int facility; @@ -148,12 +150,12 @@ public: void open(); void close(); - void log(std::string msg, int prio); + void log(std::string msg, int prio); static bool duplicateAllowed() { return true; }; - LogTargetFile& setLogFilename(std::string l); + LogTargetFile& setLogFilename(std::string l); std::string getLogFilename() const { return logfilename; } - + private: std::string logfilename; std::ofstream logfile; @@ -169,7 +171,7 @@ public: void open(); void close(); - void log(std::string msg, int prio); + void log(std::string msg, int prio); static bool duplicateAllowed() { return false; }; private: @@ -188,10 +190,10 @@ public: void open(); void close(); - void log(std::string msg, int prio); + void log(std::string msg, int prio); static bool duplicateAllowed() { return false; }; - LogTargetWinEventlog& setLogName(std::string l); + LogTargetWinEventlog& setLogName(std::string l); std::string getLogName() const { return logname; }; private: