home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / db02_src.zip / dcdefs.h < prev    next >
C/C++ Source or Header  |  1993-11-05  |  2KB  |  60 lines

  1. /**************************************************************************
  2.  * Source Id :
  3.  *
  4.  * $Id: dcdefs.h,v 1.4 1993/11/05 13:46:57 kevinl Exp $
  5.  *-------------------------------------------------------------------------
  6.  * Project Notes :
  7.  *
  8.  *  Diamond Base
  9.  *  ============
  10.  *      A solid database implementation, spurred on by the continuing
  11.  *  Metal (Lead) Base saga.
  12.  *
  13.  *  Project Team :
  14.  *        A. Davison
  15.  *        K. Lentin
  16.  *        D. Platt
  17.  *
  18.  *    Project Commenced : 05-02-1993
  19.  *
  20.  *-------------------------------------------------------------------------
  21.  *  Module Notes :
  22.  *  Definitions shared between server and client in multi-db
  23.  *  Original Author : daz.
  24.  *
  25.  *-------------------------------------------------------------------------
  26.  * Revision History:
  27.  *
  28.  * $Log: dcdefs.h,v $
  29.  * Revision 1.4  1993/11/05  13:46:57  kevinl
  30.  * Protocol and fixes
  31.  *
  32.  * Revision 1.3  1993/10/24  14:38:26  darrenp
  33.  * SunOS fixes, big endian fixes, bug fixes.
  34.  *
  35.  * Revision 1.2  1993/07/21  14:25:42  daz
  36.  * *** empty log message ***
  37.  *
  38.  * Revision 1.1  1993/07/04  12:31:35  daz
  39.  * Initial revision
  40.  *
  41.  * Revision 1.1  1993/07/04  02:21:13  daz
  42.  * Initial revision
  43.  *
  44.  **************************************************************************/
  45.  
  46. #ifndef __dcdefs_h__
  47. #define __dcdefs_h__
  48.  
  49. #define ATTACH_CHANNEL 2
  50. #define BASE_REQ 100000l
  51. #define BASE_RESP 200000l
  52. #define MAX_TRANS_AREA 4096
  53.  
  54. //
  55. // Version information:
  56. const char serverVersion[] = "0.0 alpha";
  57. const long serverProtocol = 10; // Start at 10 and work upwards.
  58.  
  59. #endif
  60.