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 p

⟦052f3e9ac⟧ TextFile

    Length: 962 (0x3c2)
    Types: TextFile
    Names: »pathname.c«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Hunt/pathname.c« 

TextFile

/*
 *  Hunt
 *  Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold
 *  San Francisco, California
 *
 *  Copyright (c) 1985 Regents of the University of California.
 *  All rights reserved.  The Berkeley software License Agreement
 *  specifies the terms and conditions for redistribution.
 */

/*
 * There is no particular significance to the numbers assigned
 * to Test_port.  They're just random numbers greater than the
 * range reserved for privileged sockets.
 */

# ifdef DEBUG

char	*Driver =	"/va/conrad/games/src/hunt/huntd.dbg";
# ifdef INTERNET
int	Test_port =	('h' << 8) | 't';
# else INTERNET
char	*Sock_name =	"/tmp/hunt";
# endif INTERNET
char	*Stat_file =	"/va/conrad/games/src/hunt/hunt.stats";

# else DEBUG

char	*Driver =	"/usr/games/lib/huntd";
# ifdef INTERNET
int	Test_port =	('h' << 8) | 't';
# else INTERNET
char	*Sock_name =	"/tmp/hunt";
# endif INTERNET
char	*Stat_file =	"/usr/tmp/hunt.stats";

# endif DEBUG