sys_init.c

来自「ftam等标准协议服务器和客户端的源代码。」· C语言 代码 · 共 86 行

C
86
字号
/* sys_init.c - System tailoring initialisation */#ifndef lintstatic char *rcsid = "$Header: /xtel/isode/isode/dsap/common/RCS/sys_init.c,v 9.0 1992/06/16 12:12:39 isode Rel $";#endif/* * $Header: /xtel/isode/isode/dsap/common/RCS/sys_init.c,v 9.0 1992/06/16 12:12:39 isode Rel $ * * * $Log: sys_init.c,v $ * Revision 9.0  1992/06/16  12:12:39  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. * *//* LINTLIBRARY */#include "quipu/util.h"#include "tailor.h"extern char *oidtable;extern char *dsa_address;extern char *myname;extern LLog * log_dsap;dsap_init(acptr,avptr)int *acptr;char *** avptr;{char * name;char ** ptr;int cnt;extern int parse_line;	parse_line = 0;		/* stop 'line 1:' being printed in tailor file errors */	if (acptr == (int *) NULL)		name= "unknown";	else		name = **avptr; 	isodetailor (name, 1);		/* must be called before any isodefile() */ 	log_dsap -> ll_file = strdup ("dsap.log"); 	ll_hdinit (log_dsap, name);	DLOG (log_dsap,LLOG_TRACE,("Initialisation"));	if (acptr != (int *) NULL) {		cnt = *acptr;		ptr = *avptr;	}	(void) tai_args (acptr,avptr);	if (dsap_tai_init() != OK)		fatal (-1,"Tailor failure");	if (dsa_address == NULLCP)		if (myname != NULLCP)			dsa_address = myname;		else			fatal (-1, "dsa_address not set");	if (acptr != (int *)NULL) 		(void) tai_args (&cnt,&ptr);  /* second call IS needed */	else		(void) tai_args (acptr,avptr);  	LLOG (log_dsap,LLOG_NOTICE,("Loading oid table (%s)",oidtable));	if (load_oid_table (oidtable) == NOTOK)		fatal (-1, "Can't load OID tables");	DLOG (log_dsap,LLOG_TRACE ,("*** Starting ***"));}

⌨️ 快捷键说明

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