ipsecmsgcserver.h
来自「ipsec PNE 3.3 source code, running at mo」· C头文件 代码 · 共 62 行
H
62 行
/* ipsecMsgCServer.h - WindNet IPsec and IKE: IPsec message channel server header file *//* * Copyright (c) 2000-2005 Wind River Systems, Inc. * * The right to copy, distribute, modify or otherwise make use * of this software may be licensed only pursuant to the terms * of an applicable Wind River license agreement. *//*modification history------------------------------------------01c,26oct05,djp Moved common portions to wrSecMsgCServer.h01b,11apr05,djp Added support for logger event enabled get/set01a,09mar05,djp Added stats code*//************************************************************************/#if !defined (__IPSECMSGCSERVER_H__)#define __IPSECMSGCSERVER_H__/* IPSEC Specific definitions that utilizing the Message Channel Libraries */#include <vxWorks.h>#include "../msgCLib/msgCLib.h"#include "../common/wrSecMsgChannel.h"/* Prototypes */#ifdef INCLUDE_LOGGING_IPSEC#include <wrn/ipsec/ipsecLogger.h>STATUS ipsecLoggerLogEventEnabledSetHandler(IPSEC_LOG_EVENT_ID eventId, BOOL enable);BOOL ipsecLoggerIsLogEventEnabled(IPSEC_LOG_EVENT_ID eventId);#endif#ifdef INCLUDE_COUNTERS_IPSEC#ifdef INCLUDE_COUNTERS_NETWORK_INTERFACESTATUS ipsecIfStatsGetHandler(char *cptrAddrString, NETWORK_INTERFACE_COUNTS *stats);#endif#ifdef INCLUDE_COUNTERS_POLICIESSTATUS ipsecPolicyStatsGetHandler(char *p_configuration_string, SECURITY_POLICY_COUNTS *inboundStats, SECURITY_POLICY_COUNTS *outboundStats);#endif#ifdef INCLUDE_COUNTERS_PROTECTION_SUITESSTATUS protectionSuiteStatsGetHandler(char *p_configuration_string, PROTECTION_SUITE_COUNTS *stats);STATUS protectionSuiteStatsGetBySPIHandler(int spi, PROTECTION_SUITE_COUNTS *stats);#endif#endif /* INCLUDE_COUNTERS_IPSEC */#endif /* __IPSECMSGCSERVER_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?