⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tnc_compliance_callbacks.h

📁 linux 下通过802.1认证的安装包
💻 H
字号:
/**
 * Licensed under a dual GPL/BSD license.  (See LICENSE file for more info.)
 *
 * \author chris@open1x.org
 *
 * $Id: tnc_compliance_callbacks.h,v 1.1.2.5 2008/01/21 22:51:50 chessing Exp $
 * $Date: 2008/01/21 22:51:50 $
 **/

#ifndef __TNC_COMPLIANCE_CALLBACKS_H__
#define __TNC_COMPLIANCE_CALLBACKS_H__

#ifdef HAVE_TNC

typedef struct _tnc_callbacks {
	struct _tnc_callbacks *next;
	uint32_t imcID;
	uint32_t connID;
	uint32_t oui;
	uint32_t notification;
	void (*callback)(TNC_IMCID, TNC_ConnectionID, int);
} tnc_callbacks;

int tnc_compliance_callbacks_add(TNC_IMCID, TNC_ConnectionID, uint32_t, uint32_t, void *);
int tnc_compliance_callbacks_call(TNC_IMCID, TNC_ConnectionID, uint32_t, uint32_t, int);
tnc_callbacks *tnc_compliance_callbacks_locate(TNC_IMCID, TNC_ConnectionID, uint32_t, uint32_t);
void tnc_compliance_callbacks_cleanup();

#endif // HAVE_TNC

#endif // __TNC_COMPLIANCE_CALLBACKS_H__

⌨️ 快捷键说明

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