home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / comm / amitcp-3.0ß2.lha / AmiTCP / src / amitcp / conf / conf.h next >
Text File  |  1993-08-12  |  2KB  |  70 lines

  1. /*
  2.  * $Id: conf.h,v 1.3 1993/06/04 11:16:15 jraja Exp $
  3.  * 
  4.  * Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
  5.  *                    Helsinki University of Technology, Finland.
  6.  *                    All rights reserved.
  7.  *
  8.  * This file contains several definitions which affect the compilation of the 
  9.  * AmiTCP/IP code. Normally they are boolean switches and the comments tell
  10.  * what happens if the value is TRUE (eg. non zero)
  11.  *
  12.  * HISTORY
  13.  * $Log: conf.h,v $
  14.  * Revision 1.3  1993/06/04  11:16:15  jraja
  15.  * Fixes for first public release.
  16.  *
  17.  * Revision 1.2  1993/05/29  20:48:24  jraja
  18.  * Added default values for IP configurable flags, removed GATEWAY.
  19.  *
  20.  * Revision 1.1  1993/05/17  00:50:39  ppessi
  21.  * General configuration file.
  22.  *
  23.  */
  24.  
  25. /*
  26.  * Do diagnostic tests which are not necessary in production version
  27.  */
  28. #define DIAGNOSTIC 1
  29.  
  30. /*
  31.  * Be compatible with BSD 4.2. Affects only checksumming of UDP data. If true
  32.  * the checksum is NOT calculated by default.
  33.  */
  34. #define COMPAT_42 0
  35.  
  36. /*
  37.  * Make TCP compatible with BSD 4.2
  38.  */
  39. #define TCP_COMPAT_42 0
  40.  
  41. /*
  42.  * protocol families
  43.  */
  44. #define INET 1
  45. #define CCITT 0
  46. #define NHY 0            /* HYPERchannel */
  47. #define NIMP 0
  48. #define ISO 0
  49. #define NS 0
  50. #define RMP 0
  51.  
  52. /*
  53.  * optional protocols over IP
  54.  */
  55. #define NSIP 0
  56. #define EON 0
  57. #define TPIP 0
  58.  
  59. /*
  60.  * default values for IP configurable flags
  61.  */
  62. #define IPFORWARDING    0
  63. #define IPSENDREDIRECTS 1
  64. #define IPPRINTFS       0
  65.  
  66. /*
  67.  * Network level
  68.  */
  69. #define NETHER 1        /* Call ARP ioctl */
  70.