radius_mib_public.h

来自「vxworks下radius协议栈 的源代码」· C头文件 代码 · 共 47 行

H
47
字号
/* radius_mib_public.h *//* Prototypes of MIB interface routines to initialize and tear down the 	*//* MIB mechanism, and to attach and detach a certain MIB table to or from 	*//* the SNMP agent.															*//* Copyright 1984 - 2000 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history____________________01b,26jan01,tk	ifdef out entire file if __RADIUS_MIB__ is not defined01a,19dec00,md  merged from visual source safe*//***** radius_mib_public.h*** *** Public functions to support RADIUS MIBs.*** **/#ifdef __RADIUS_MIB__#ifndef __INCradius_mib_publich#define __INCradius_mib_publich#ifndef _RWOS_H_typedef enum bool{	true = 1,	false = 0} bool;#endif	/** _RWOS_H_ **//***** Initialization and clean up***	---------------------------**/bool radius_mib_initialize(void);void radius_mib_cleanup(void);bool radius_mib_attach(void);void radius_mib_detach(void);	#endif	/* __INCradius_mib_publich */#endif  /* __RADIUS_MIB__ */

⌨️ 快捷键说明

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