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

⟦4a6c71fea⟧ TextFile

    Length: 509 (0x1fd)
    Types: TextFile
    Names: »data.h«

Derivation

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

TextFile

/* data.h: data excahnge between rcvalert client/server */

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



#ifndef _H_RCVALERT_DATA
#define _H_RCVALERT_DATA

struct data {
	long	refid;		/* network order */
	char	user[40];	/* username */
	char	data[512];	/* null terminated */
};

#define PORT		2345
#define N_RETRYS	3


#endif