radius_debug.c

来自「vxworks下radius协议栈 的源代码」· C语言 代码 · 共 59 行

C
59
字号
/* radius_debug.c *//* Implementations of RADIUS debug functions									*//* Copyright 1984 - 2000 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history____________________01a,19dec00,md  merged from visual source safe*//************************************************************************//*	Copyright (C) 1993 - 1999 RouterWare, Inc.   								*//*	Unpublished - rights reserved under the Copyright Laws of the			*//*	United States.  Use, duplication, or disclosure by the 					*//*	Government is subject to restrictions as set forth in 					*//*	subparagraph (c)(1)(ii) of the Rights in Technical Data and 			*//*	Computer Software clause at 252.227-7013.										*//*	RouterWare, Inc., 3961 MacArthur Suite 212 Newport Beach, CA 92660	*//************************************************************************/#include "radius.h"#ifdef __RADIUS_BREAKPOINT__/****************************************************************************/void check_for_radius_initialization_breakpoint (void){	if (radius.initialization_breakpoint == TRUE)		{		BREAKPOINT;		}}/****************************************************************************/void check_for_radius_shutdown_breakpoint (void){	if (radius.shutdown_breakpoint == TRUE)		{		BREAKPOINT;		}}/****************************************************************************/void check_for_radius_configuration_breakpoint (void){	if (radius.configuration_breakpoint == TRUE)		{		BREAKPOINT;		}}/****************************************************************************/void check_for_radius_runtime_breakpoint (void){	if (radius.runtime_breakpoint == TRUE)		{		BREAKPOINT;		}}#endif /* __RADIUS_BREAKPOINT__ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?