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

📄 nrs_info.h

📁 SecuDe是一个由安全应用程序接口组成,对验证机制、证件处理、PEM、X.400报文处理和密钥管理提供支持。SecuDe提供DES、 RSA杂凑函数、密钥生成以及数字签名的生成和核实等多种密码机制。
💻 H
字号:
/* nrs_info.h - attribute structure for representing NRS information *//*  * $Header: /xtel/isode/isode/h/quipu/RCS/nrs_info.h,v 9.0 1992/06/16 12:23:11 isode Rel $ * * * $Log: nrs_info.h,v $ * Revision 9.0  1992/06/16  12:23:11  isode * Release 8.0 * *//* *				  NOTICE * *    Acquisition, use, and distribution of this module and related *    materials are subject to the restrictions of a license agreement. *    Consult the Preface in the User's Manual for the full terms of *    this agreement. * */#ifndef QUIPUNRSINFO#define QUIPUNRSINFO#include "psap.h"struct str_seq{	char		* ss_str;	struct str_seq	* ss_next;};/* Defined values for contexts */#define	NRS_Context_UNKNOWN	-1#define	NRS_Context_X29	0#define	NRS_Context_TS29	1#define	NRS_Context_NIFTP	2#define	NRS_Context_MAIL_NIFTP	3#define	NRS_Context_NOT_USED	4#define	NRS_Context_MAIL_TELEX	5#define	NRS_Context_JTMP	6#define	NRS_Context_JTMP_FILES	7#define	NRS_Context_JTMP_REG	8#define	NRS_Context_YBTS_NODE	9#define	NRS_Context_YBTS	10#define	NRS_Context_FTAM	11#define	NRS_Context_JTM	12#define	NRS_Context_JTM_REG	13#define	NRS_Context_VT	14#define	NRS_Context_MOTIS	15/* Defined values for address space identifiers */#define	NRS_Address_Space_Id_PSS	0#define	NRS_Address_Space_Id_JANET	1#define	NRS_Address_Space_Id_TELEX	2#define	NRS_Address_Space_Id_OSI_CONS	3struct addr_info{	int			  addr_info_type;#define	ADDR_INFO_DTE_ONLY			1#define	ADDR_INFO_DTE_APPLIC_INFO		2#define	ADDR_INFO_DTE_CUDF			3#define	ADDR_INFO_DTE_CUDF_APPLIC_INFO		4#define	ADDR_INFO_DTE_YBTS			5#define	ADDR_INFO_DTE_YBTS_APPLIC_INFO		6#define	ADDR_INFO_DTE_YBTS_APPLIC_RELAY		7#define	ADDR_INFO_NONE_NEEDED			8#define	ADDR_INFO_OSI_ADDRESSING		9#define	ADDR_INFO_OSI_NSAP_ONLY			10#define	ADDR_INFO_OSI_NSAP_APPLIC_INFO		11#define	ADDR_INFO_OSI_NSAP_APPLIC_RELAY		12#define	ADDR_INFO_DTE_YBTS_OSI_ADDRESSING	13	char		* dte_number;	char		* cudf;	char		* ybts_string;	char		* nsap;	char		* tselector;	char		* sselector;	char		* pselector;	PE		  place_holder;	PE		  application_title;	PE		  per_app_context_info;	struct str_seq	* applic_info;	struct str_seq	* applic_relay;};struct nrs_routes{	PE			  cost;	struct addr_info	* addr_info;	struct nrs_routes	* next;};struct nrs_info{	int			  context;	int			  addr_sp_id;	struct nrs_routes	* routes;};#endif

⌨️ 快捷键说明

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