ootrace.h
来自「一个非常美妙的proxy。功能强大。基于sip的协议。如果还要的话」· C头文件 代码 · 共 153 行
H
153 行
/* * Copyright (C) 2004-2005 by Objective Systems, Inc. * * This software is furnished under an open source license and may be * used and copied only in accordance with the terms of this license. * The text of the license may generally be found in the root * directory of this installation in the COPYING file. It * can also be viewed online at the following URL: * * http://www.obj-sys.com/open/license.html * * Any redistributions of this file including modified versions must * maintain this copyright notice. * *****************************************************************************//** * @file ootrace.h * This file defines the trace functionality */#include "ooCommon.h"#ifndef _OOTRACE_H_#define _OOTRACE_H_/* tracing */#define OOTRCLVLERR 1#define OOTRCLVLWARN 2#define OOTRCLVLINFO 3#define OOTRCLVLDBGA 4#define OOTRCLVLDBGB 5#define OOTRCLVLDBGC 6#ifdef _OOWARNING#define TRACELVL OOTRCLVLWARN#endif#ifdef _OOINFO#define TRACELVL OOTRCLVLINFO#endif#ifdef _OODEBUGA#define TRACELVL OOTRCLVLDBGA#endif#ifdef _OODEBUGB#define TRACELVL OOTRCLVLDBGB#endif#ifdef _OODEBUGC#define TRACELVL OOTRCLVLDBGC#endif/* Ensure we always log error messages */#ifndef TRACELVL#define TRACELVL 1#endif#define OOTRACEERR1(a) ooTrace(OOTRCLVLERR,a)#define OOTRACEERR2(a,b) ooTrace(OOTRCLVLERR,a,b)#define OOTRACEERR3(a,b,c) ooTrace(OOTRCLVLERR,a,b,c)#define OOTRACEERR4(a,b,c,d) ooTrace(OOTRCLVLERR,a,b,c,d)#define OOTRACEWARN1(a) ooTrace(OOTRCLVLWARN,a)#define OOTRACEWARN2(a,b) ooTrace(OOTRCLVLWARN,a,b)#define OOTRACEWARN3(a,b,c) ooTrace(OOTRCLVLWARN,a,b,c)#define OOTRACEWARN4(a,b,c,d) ooTrace(OOTRCLVLWARN,a,b,c,d)#define OOTRACEINFO1(a) ooTrace(OOTRCLVLINFO, a)#define OOTRACEINFO2(a,b) ooTrace(OOTRCLVLINFO,a,b)#define OOTRACEINFO3(a,b,c) ooTrace(OOTRCLVLINFO,a,b,c)#define OOTRACEINFO4(a,b,c,d) ooTrace(OOTRCLVLINFO,a,b,c,d)#define OOTRACEINFO5(a,b,c,d,e) ooTrace(OOTRCLVLINFO,a,b,c,d,e)#define OOTRACEINFO6(a,b,c,d,e,f) ooTrace(OOTRCLVLINFO,a,b,c,d,e, f)#ifndef _COMPACT #define OOTRACEDBGA1(a) ooTrace(OOTRCLVLDBGA,a)#define OOTRACEDBGA2(a,b) ooTrace(OOTRCLVLDBGA,a,b)#define OOTRACEDBGA3(a,b,c) ooTrace(OOTRCLVLDBGA,a,b,c)#define OOTRACEDBGA4(a,b,c,d) ooTrace(OOTRCLVLDBGA,a,b,c,d)#define OOTRACEDBGA5(a,b,c,d,e) ooTrace(OOTRCLVLDBGA,a,b,c,d,e)#define OOTRACEDBGB1(a) ooTrace(OOTRCLVLDBGB,a)#define OOTRACEDBGB2(a,b) ooTrace(OOTRCLVLDBGB,a,b)#define OOTRACEDBGB3(a,b,c) ooTrace(OOTRCLVLDBGB,a,b,c)#define OOTRACEDBGB4(a,b,c,d) ooTrace(OOTRCLVLDBGB,a,b,c,d)#define OOTRACEDBGC1(a) ooTrace(OOTRCLVLDBGC,a)#define OOTRACEDBGC2(a,b) ooTrace(OOTRCLVLDBGC,a,b)#define OOTRACEDBGC3(a,b,c) ooTrace(OOTRCLVLDBGC,a,b,c)#define OOTRACEDBGC4(a,b,c,d) ooTrace(OOTRCLVLDBGC,a,b,c,d)#define OOTRACEDBGC5(a,b,c,d,e) ooTrace(OOTRCLVLDBGC,a,b,c,d,e)#else#define OOTRACEDBGA1(a) #define OOTRACEDBGA2(a,b)#define OOTRACEDBGA3(a,b,c)#define OOTRACEDBGA4(a,b,c,d)#define OOTRACEDBGA5(a,b,c,d,e)#define OOTRACEDBGB1(a)#define OOTRACEDBGB2(a,b) #define OOTRACEDBGB3(a,b,c)#define OOTRACEDBGB4(a,b,c,d)#define OOTRACEDBGC1(a)#define OOTRACEDBGC2(a,b)#define OOTRACEDBGC3(a,b,c)#define OOTRACEDBGC4(a,b,c,d)#define OOTRACEDBGC5(a,b,c,d,e)#endif#ifdef __cplusplusextern "C" {#endif#ifndef EXTERN#ifdef MAKE_DLL#define EXTERN __declspec(dllexport)#else#define EXTERN#endif /* MAKE_DLL */#endif /* EXTERN *//** * This function is used to set the trace level. * @param traceLevel New trace level. Various values are: OOTRCLVLERR, * OOTRCLVLWARN, OOTRCLVLINFO, OOTRCLVLDBGA, OOTRCLVLDBGB, * OOTRCLVLDBGC * * @return None */EXTERN void ooSetTraceThreshold(OOUINT32 traceLevel);/** * This function is used to write the messages to the trace file. * * @param traceLevel Trace level for the message. * @param fmtspec Printf style format spec. * @param ... Printf style variable list of arguments * * @return - none */EXTERN void ooTrace(OOUINT32 traceLevel, const char * fmtspec, ...);/** * Helper function for the trace function. This function performs actual * writing to file. * @param logMessage Log message to be writted to file. * * @return - none */void ooTraceLogMessage(const char * logMessage);/** * */void ooChangeIPToNWOrder(char * internetIP, char* networkIP);int ooLogAsn1Error(int stat, const char * fname, int lno);#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?