]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - hunt/huntd/pathname.c
RCS Id Police.
[bsdgames-darwin.git] / hunt / huntd / pathname.c
1 /* $NetBSD: pathname.c,v 1.2 1997/10/10 16:33:49 lukem Exp $ */
2 /*
3 * Hunt
4 * Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold
5 * San Francisco, California
6 */
7
8 #include <sys/cdefs.h>
9 #ifndef lint
10 __RCSID("$NetBSD: pathname.c,v 1.2 1997/10/10 16:33:49 lukem Exp $");
11 #endif /* not lint */
12
13 /*
14 * There is no particular significance to the numbers assigned
15 * to Test_port. They're just random numbers greater than the
16 * range reserved for privileged sockets.
17 */
18
19 # include <sys/types.h>
20
21 # ifdef DEBUG
22
23 char *Driver = "/home/socr/a/conrad/games/src/hunt/huntd.dbg";
24 # ifdef INTERNET
25 u_short Test_port = ('h' << 8) | 't';
26 # else
27 char *Sock_name = "/tmp/hunt";
28 char *Stat_name = "/tmp/hunt.stats";
29 # endif
30
31 # else
32
33 char *Driver = HUNTD;
34 # ifdef INTERNET
35 u_short Test_port = ('h' << 8) | 't';
36 # else
37 char *Sock_name = "/tmp/hunt";
38 char *Stat_name = "/tmp/hunt.stats";
39 # endif
40
41 # endif