X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Flogging.h;fp=src%2Flogging.h;h=2e2ccf6f91d2e0e494a19f2bea1976950075f6f0;hb=cc603e2765f17555ecdc2b74c27ebf96e6691bf6;hp=0000000000000000000000000000000000000000;hpb=131327a729216de8ae86da0c3c4d65d409741b7b;p=tinc diff --git a/src/logging.h b/src/logging.h new file mode 100644 index 00000000..2e2ccf6f --- /dev/null +++ b/src/logging.h @@ -0,0 +1,58 @@ +/* + logging.h -- header for logging.c + Copyright (C) 2002 Guus Sliepen , + 2002 Ivo Timmermans + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: logging.h,v 1.1 2002/04/13 10:25:38 zarq Exp $ +*/ + +#ifndef __TINC_LOGGING_H__ +#define __TINC_LOGGING_H__ + +#include + +enum { + TLOG_DEBUG, + TLOG_INFO, + TLOG_NOTICE, + TLOG_ERROR, + TLOG_CRITICAL +}; + +enum { + DEBUG_NOTHING = 0, /* Quiet mode, only show starting/stopping of the daemon */ + DEBUG_CONNECTIONS = 1, /* Show (dis)connects of other tinc daemons via TCP */ + DEBUG_ERROR = 2, /* Show error messages received from other hosts */ + DEBUG_STATUS = 2, /* Show status messages received from other hosts */ + DEBUG_PROTOCOL = 3, /* Show the requests that are sent/received */ + DEBUG_META = 4, /* Show contents of every request that is sent/received */ + DEBUG_TRAFFIC = 5, /* Show network traffic information */ + DEBUG_PACKET = 6, /* Show contents of each packet that is being sent/received */ + DEBUG_SCARY_THINGS = 10 /* You have been warned */ +}; + +typedef void (log_function_t)(int,int,char*,va_list); + +extern int debug_lvl; +extern avl_tree_t *log_hooks_tree; + +extern void log_message(int, int, char *, ...); +extern void log_add_hook(log_function_t *); +extern void log_del_hook(log_function_t *); +extern log_function_t log_default_hook; + +#endif /* __TINC_LOGGING_H__ */