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 t

⟦9c17008bf⟧ TextFile

    Length: 2430 (0x97e)
    Types: TextFile
    Names: »tailor.h«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/h/tailor.h« 

TextFile

/* tailor.h - ISODE tailoring */

/* 
 * $Header: /f/osi/h/RCS/tailor.h,v 6.0 89/03/18 23:32:26 mrose Rel $
 *
 *
 * $Log:	tailor.h,v $
 * Revision 6.0  89/03/18  23:32:26  mrose
 * Release 5.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	_TAILOR_
#define	_TAILOR_

#ifndef	_LOGGER_
#include "logger.h"
#endif

extern char    *isodename;
extern char    *isodepath;

extern char    *isodeconfig;
extern int	isodeconlen;

extern	char   *isodelogs;


extern LLog *compat_log, _compat_log;
extern LLog *addr_log, _addr_log;
extern LLog *tsap_log, _tsap_log;
extern LLog *ssap_log, _ssap_log;
extern LLog *psap_log, _psap_log;
extern LLog *psap2_log, _psap2_log;
extern LLog *acsap_log, _acsap_log;
extern LLog *rtsap_log, _rtsap_log;
extern LLog *rosap_log, _rosap_log;

extern int    ts_stacks;
#define	TS_NONE	0
#define	TS_TCP	0x01
#define	TS_X25	0x02
#define	TS_CONS	0x04
#define	TS_BRG	0x08
#define	TS_TP4	0x10
#define	TS_ALL	0xff

extern int    ts_communities[];

#ifdef	X25
extern char    *x25_local_dte;

extern char     x25_intl_zero;
extern char     x25_strip_dnic;
extern char    *x25_dnic_prefix;

extern u_char   reverse_charge;
extern u_short  recvpktsize;
extern u_short  sendpktsize;
extern u_char   recvwndsize;
extern u_char   sendwndsize;
extern u_char   recvthruput;
extern u_char   sendthruput;
extern u_char   cug_req;
extern u_char   cug_index;
extern u_char   fast_select_type;
extern u_char   rpoa_req;
extern u_short  rpoa;

extern LLog *x25_log, _x25_log;

#ifdef	CAMTEC_CCL
extern char     x25_outgoing_port;
#endif
#endif

#ifdef	BRIDGE_X25
extern char    *x25_bridge_host;
extern char    *x25_bridge_addr;
extern char    *x25_bridge_listen;
extern char    *x25_bridge_pid;
extern char    *x25_bridge_discrim;
#endif

#if	defined (BRIDGE_X25) || defined (X25)
extern u_short  x25_bridge_port;
#endif

#ifdef CONS
#ifdef CAMTEC_CCL
extern char    *cons_local_address;
extern char    cons_is_ybts;
extern char    *cons_listen_str;
#endif
#endif


extern char	ns_enabled;
extern char    *ns_address;


void	isodetailor ();
int	isodesetvar ();
void	isodexport ();

#define	isodefile(file)	_isodefile (isodepath, (file))
char   *_isodefile ();

char   *getlocalhost ();

#endif