home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / y / bsdgames / bsd-game.000 / bsd-game / games / hunt / pathname.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-21  |  728 b   |  36 lines

  1. /*
  2.  *  Hunt
  3.  *  Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold
  4.  *  San Francisco, California
  5.  */
  6.  
  7. /*
  8.  * There is no particular significance to the numbers assigned
  9.  * to Test_port.  They're just random numbers greater than the
  10.  * range reserved for privileged sockets.
  11.  */
  12.  
  13. # include    <sys/types.h>
  14.  
  15. # ifdef DEBUG
  16.  
  17. char    *Driver =    "/home/socr/a/conrad/games/src/hunt/huntd.dbg";
  18. #  ifdef INTERNET
  19. u_short    Test_port =    ('h' << 8) | 't';
  20. #  else
  21. char    *Sock_name =    "/tmp/hunt";
  22. char    *Stat_name =    "/tmp/hunt.stats";
  23. #  endif
  24.  
  25. # else
  26.  
  27. char    *Driver =    HUNTD;
  28. #  ifdef INTERNET
  29. u_short    Test_port =    ('h' << 8) | 't';
  30. #  else
  31. char    *Sock_name =    "/tmp/hunt";
  32. char    *Stat_name =    "/tmp/hunt.stats";
  33. #  endif
  34.  
  35. # endif
  36.