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 r

⟦1020511b0⟧ TextFile

    Length: 887 (0x377)
    Types: TextFile
    Names: »rtsparams.h«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/h/rtsparams.h« 

TextFile

/* RtsParams.h: RTS parameter structures */

/*
 * @(#) $Header: /cs/research/pp/hubris/pp-beta/h/RCS/rtsparams.h,v 5.0 90/09/20 16:51:08 pp Exp Locker: pp $
 *
 * $Log:	rtsparams.h,v $
 * Revision 5.0  90/09/20  16:51:08  pp
 * rcsforce : 5.0 public release
 * 
 *
 */



#ifndef _H_RTSPARAMS
#define _H_RTSPARAMS

typedef struct RtsParams {
	char			*their_name;
	char			*their_passwd;
	char			*their_internal_ppname;
	char			*their_address;

	char			*our_name;
	char			*our_passwd;
	char			*our_address;

	char			*md_info;
	char			*try_next;
	char			*other_info;

	int			rts_mode;

	int			type;
#define RTSP_1984		1
#define RTSP_1988_X410MODE	2
#define RTSP_1988_NORMAL	3

	int			trace_type;
#define RTSP_TRACE_ADMD		1
#define RTSP_TRACE_NOINT	2
#define RTSP_TRACE_LOCALINT	3
#define RTSP_TRACE_ALL		4

} RtsParams;


RtsParams       *tb_rtsparams();
void            RPfree();

#endif