00001 /* 00002 * logging.h - functions for logging 00003 * 00004 * EAP-IKEv2 00005 * 00006 * This library implements ideas of draft-tschofenig-eap-ikev2-10.txt 00007 * Internet-Draft. Version of the document that this library corresponds 00008 * to you can find at 00009 * http://tools.ietf.org/wg/eap/draft-tschofenig-eap-ikev2-10.txt. 00010 * 00011 * This file is part of libeap-ikev2. 00012 * 00013 * libeap-ikev2 is free software; you can redistribute it and/or modify 00014 * it under the terms of the GNU General Public License as published by 00015 * the Free Software Foundation; either version 2 of the License, or 00016 * (at your option) any later version. 00017 * 00018 * libeap-ikev2 is distributed in the hope that it will be useful, 00019 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 * GNU General Public License for more details. 00022 * 00023 * You should have received a copy of the GNU General Public License 00024 * along with libeap-ikev2; if not, write to the Free Software 00025 * 00026 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00027 * 00028 * Copyright (C) 2005-2006 Krzysztof Rzecki <krzysztof.rzecki@ccns.pl> 00029 * Copyright (C) 2005-2006 Rafal Mijal <rafal.mijal@ccns.pl> 00030 * Copyright (C) 2005-2006 Piotr Marnik <piotr.marnik@ccns.pl> 00031 * Copyright (C) 2005-2006 Pawel Matejski <pawel.matejski@ccns.pl> 00032 * Copyright (C) 2003 Udo Schilcher <udo.schilcher@edu.uni-klu.ac.at> 00033 * Copyright (C) 2003 Thomas Hambrusch <thambrus@edu.uni-klu.ac.at> 00034 * 00035 */ 00036 00037 #ifndef __logging_h 00038 #define __logging_h 00039 00040 #ifdef __cplusplus 00041 extern "C" { 00042 #endif 00043 00044 #include "common.h" 00045 00046 #include <stdarg.h> 00047 00048 #define I2L_DBG 1 00049 #define I2L_INFO 2 00050 #define I2L_ERR 3 00051 00052 #define IKE_PRETTY_LOCATION 00053 //#define IKE_SHOW_LOCATION 00054 #ifdef IKE_SHOW_LOCATION 00055 # ifdef IKE_PRETTY_LOCATION 00056 char * log_pretty_location(char *func, char *file, int line, char *text); 00057 # define LOCATION(x) log_pretty_location(__PRETTY_FUNCTION__,__FILE__,__LINE__,(x)) 00058 # else 00059 # define LOCATION(x) __FILE__ ":" TOSTRING(__LINE__) ":" x 00060 # endif 00061 #else //NOT IKE_SHOW_LOCATION 00062 # define LOCATION(x) x 00063 #endif //IKE_SHOW_LOCATION 00064 00065 typedef void (*t_ikev2_log_vcallback)(int,const char *,va_list ap); 00066 00067 void ikev2_set_log_callback(t_ikev2_log_vcallback callback); 00068 00069 void xlogf(int level, const char *, ...); 00070 00071 00072 #ifdef __cplusplus 00073 } 00074 #endif 00075 00076 #endif