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 c

⟦14923c7fd⟧ TextFile

    Length: 1617 (0x651)
    Types: TextFile
    Names: »conf.c«

Derivation

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

TextFile

/* conf.c - DUA Configuration */

#ifndef lint
static char *rcsid = "$Header: /f/osi/dsap/common/RCS/conf.c,v 7.0 89/11/23 21:47:42 mrose Rel $";
#endif

/*
 * $Header: /f/osi/dsap/common/RCS/conf.c,v 7.0 89/11/23 21:47:42 mrose Rel $
 *
 *
 * $Log:	conf.c,v $
 * Revision 7.0  89/11/23  21:47:42  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.
 *
 */


/* LINTLIBRARY */

#include "quipu/util.h"
#include "tailor.h"

int     sizelimit = 20;
int	timelimit = 30;
	
char    *oidtable =  "oidtable";
char    *tailfile =  "dsaptailor";
char    *isotailor = NULLCP;

char    *dsa_address = NULLCP;
char    *myname = NULLCP;

char	*local_dit= NULLCP;	/* the part of the tree local to the users */
char 	dishinit = FALSE;

int     dsap_id,        /* global last id sent */
	dsap_ad;        /* global association descriptor */

static  LLog    _ldsap_log =
{
	"dsap.log",
	NULLCP,
	NULLCP,
	LLOG_FATAL | LLOG_EXCEPTIONS,
	LLOG_NONE,
	50,
	LLOGZER | LLOGCRT | LLOGCLS,
	NOTOK
};

LLog    *log_dsap = &_ldsap_log;

#ifndef NO_STATS

static  LLog    lstat_log =
{
	"quipu.log",
	NULLCP,
	NULLCP,
	LLOG_ALL,
	LLOG_NONE,
	-1,
	LLOGCLS | LLOGCRT | LLOGZER,
	NOTOK
};

LLog    *log_stat = &lstat_log;

#endif

int     oidformat = 1;      /* oid format, 1=part, 2=full, 3=numeric */

/* a quick def incase quipu/malloc.c is not compiled in !!! */
unsigned mem_heap = 0;