1/***************************************************************************** 2* pppdebug.h - System debugging utilities. 3* 4* Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc. 5* portions Copyright (c) 1998 Global Election Systems Inc. 6* portions Copyright (c) 2001 by Cognizant Pty Ltd. 7* 8* The authors hereby grant permission to use, copy, modify, distribute, 9* and license this software and its documentation for any purpose, provided 10* that existing copyright notices are retained in all copies and that this 11* notice and the following disclaimer are included verbatim in any 12* distributions. No written agreement, license, or royalty fee is required 13* for any of the authorized uses. 14* 15* THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR 16* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18* IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 19* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25* 26****************************************************************************** 27* REVISION HISTORY (please don't use tabs!) 28* 29* 03-01-01 Marc Boucher <marc@mbsi.ca> 30* Ported to lwIP. 31* 98-07-29 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc. 32* Original. 33* 34***************************************************************************** 35*/ 36 37#include "netif/ppp/ppp_opts.h" 38#if PPP_SUPPORT /* don't build if not configured for use in lwipopts.h */ 39 40#ifndef PPPDEBUG_H 41#define PPPDEBUG_H 42 43#ifdef __cplusplus 44extern "C" { 45#endif 46 47/* Trace levels. */ 48#define LOG_CRITICAL (PPP_DEBUG | LWIP_DBG_LEVEL_SEVERE) 49#define LOG_ERR (PPP_DEBUG | LWIP_DBG_LEVEL_SEVERE) 50#define LOG_NOTICE (PPP_DEBUG | LWIP_DBG_LEVEL_WARNING) 51#define LOG_WARNING (PPP_DEBUG | LWIP_DBG_LEVEL_WARNING) 52#define LOG_INFO (PPP_DEBUG) 53#define LOG_DETAIL (PPP_DEBUG) 54#define LOG_DEBUG (PPP_DEBUG) 55 56#if PPP_DEBUG 57 58#define MAINDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) 59#define SYSDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) 60#define FSMDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) 61#define LCPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) 62#define IPCPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) 63#define IPV6CPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) 64#define UPAPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) 65#define CHAPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) 66#define PPPDEBUG(a, b) LWIP_DEBUGF(a, b) 67 68#else /* PPP_DEBUG */ 69 70#define MAINDEBUG(a) 71#define SYSDEBUG(a) 72#define FSMDEBUG(a) 73#define LCPDEBUG(a) 74#define IPCPDEBUG(a) 75#define IPV6CPDEBUG(a) 76#define UPAPDEBUG(a) 77#define CHAPDEBUG(a) 78#define PPPDEBUG(a, b) 79 80#endif /* PPP_DEBUG */ 81 82#ifdef __cplusplus 83} 84#endif 85 86#endif /* PPPDEBUG_H */ 87 88#endif /* PPP_SUPPORT */ 89