DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T s

⟦1db1ef515⟧ TextFile

    Length: 1630 (0x65e)
    Types: TextFile
    Names: »sys_init.c«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/quipu/sys_init.c« 

TextFile

/* sys_init.c - System tailoring initialisation */

#ifndef lint
static char *rcsid = "$Header: /f/osi/quipu/RCS/sys_init.c,v 7.0 89/11/23 22:18:07 mrose Rel $";
#endif

/*
 * $Header: /f/osi/quipu/RCS/sys_init.c,v 7.0 89/11/23 22:18:07 mrose Rel $
 *
 *
 * $Log:	sys_init.c,v $
 * Revision 7.0  89/11/23  22:18:07  mrose
 * Release 6.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.
 *
 */


#include <stdio.h>
#include "quipu/oid.h"
#include "tailor.h"
#include "logger.h"

extern char *dsaoidtable;
extern LLog * log_dsap;
extern time_t cache_timeout;
extern time_t retry_timeout;
extern time_t slave_timeout;

dsa_sys_init(acptr,avptr)
int *acptr;
char *** avptr;
{
char *name;
char **ptr;
int cnt;
extern int parse_line;
extern char allow_crypt;

	parse_line = 0;		/* stop 'line 1:' being printed in tailor file errors */
	allow_crypt = 1;

	name = **avptr;

	DLOG (log_dsap,LLOG_TRACE,("Initialisation"));

	cnt = *acptr;
	ptr = *avptr;
	dsa_tai_args (acptr,avptr);

	if (dsa_tai_init(name) != OK)
		fatal (-43,"Tailoring failed");

	dsa_tai_args (&cnt,&ptr);    /* second call IS needed !!! */

	DLOG (log_dsap,LLOG_TRACE,("Loading oid table (%s)",dsaoidtable));

	load_oid_table (dsaoidtable);

	if (retry_timeout == (time_t)0)
		retry_timeout = cache_timeout;

	if (slave_timeout == (time_t)0)
		slave_timeout = cache_timeout;

	DLOG (log_dsap,LLOG_TRACE,("*** Starting ***"));

}