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

📄 ubsstats.c

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻 C
字号:
/* * Broadcom Cryptonet Driver software is distributed as is, without any warranty * of any kind, either express or implied as further specified in the GNU Public * License. This software may be used and distributed according to the terms of * the GNU Public License. * * Cryptonet is a registered trademark of Broadcom Corporation. *//****************************************************************************** * * Copyright 2000 * Broadcom Corporation * 16215 Alton Parkway * PO Box 57013 * Irvine CA 92619-7013 * *****************************************************************************//*  * Broadcom Corporation uBSec SDK  *//* * ubsinit.c:  ubsec initialization and cleanup modules. *//* * Revision History: * * 09/xx/99 SOR Created. * 07/26/00 SOR Added Number of Key MCRs */#include "ubsincl.h"/****************************************************************************** * *  Copyright 2000 *  Broadcom Corporation *  16215 Alton Parkway *  PO Box 57013 *  Irvine CA 92619-7013 * *****************************************************************************//*  * Broadcom Corporation uBSec SDK  *//* * ubsstats.c:  ubsec Statistics information. *//* * Revision History: * * 08/09/00 SOR Created */#include "ubsincl.h"/* * Ubsec get statistical information function. */UBSECAPI ubsec_Status_t ubsec_GetStatistics(ubsec_DeviceContext_t Context,	      ubsec_Statistics_pt Dest){#ifdef UBSEC_STATSDeviceInfo_pt pDevice;pDevice = (DeviceInfo_pt)Context;RTL_Memcpy(Dest,&pDevice->Statistics,sizeof(ubsec_Statistics_t));return(UBSEC_STATUS_SUCCESS);#elsereturn(UBSEC_STATUS_INVALID_PARAMETER);#endif}

⌨️ 快捷键说明

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