ncbi_comm.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_comm.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:35:06  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CONNECT___NCBI_COMM__H
  10. #define CONNECT___NCBI_COMM__H
  11. /*  $Id: ncbi_comm.h,v 1000.0 2003/10/29 16:35:06 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Anton Lavrentiev
  37.  *
  38.  * File Description:
  39.  *   Common part of internal communication protocol used by both sides
  40.  *   (client and server) of firewall daemon and service dispatcher.
  41.  *
  42.  */
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. #define NCBID_WEBPATH           "/Service/ncbid.cgi"
  47. #define HTTP_CONNECTION_INFO    "Connection-Info:"
  48. #define HTTP_DISP_FAILURES      "Dispatcher-Failures:"
  49. #define HTTP_DISP_MESSAGE       "NCBI-Message:"
  50. #define DISPATCHER_CFGPATH      "/var/etc/lbsmd/"
  51. #define DISPATCHER_CFGFILE      "servrc.cfg"
  52. #define DISP_PROTOCOL_VERSION   "1.0"
  53. typedef unsigned int ticket_t;
  54. #ifdef __cplusplus
  55. } /* extern "C" */
  56. #endif
  57. /*
  58.  * --------------------------------------------------------------------------
  59.  * $Log: ncbi_comm.h,v $
  60.  * Revision 1000.0  2003/10/29 16:35:06  gouriano
  61.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.8
  62.  *
  63.  * Revision 6.8  2003/08/11 19:06:23  lavr
  64.  * +HTTP_DISP_MESSAGE
  65.  *
  66.  * Revision 6.7  2002/12/10 22:11:14  lavr
  67.  * Add DISP_PROTOCOL_VERSION
  68.  *
  69.  * Revision 6.6  2002/10/11 19:44:51  lavr
  70.  * NCBID_NAME changed into NCBID_WEBAPTH; DISPATCHER_CFGPATH added
  71.  *
  72.  * Revision 6.5  2002/09/19 18:07:57  lavr
  73.  * Header file guard macro changed; log moved to end
  74.  *
  75.  * Revision 6.4  2001/08/20 21:59:05  lavr
  76.  * New macro: DISPATCHER_CFGFILE
  77.  *
  78.  * Revision 6.3  2001/05/11 15:28:46  lavr
  79.  * Protocol change: REQUEST_FAILED -> DISP_FAILURES
  80.  *
  81.  * Revision 6.2  2001/01/08 22:34:45  lavr
  82.  * Request-Failed added to protocol
  83.  *
  84.  * Revision 6.1  2000/12/29 18:20:26  lavr
  85.  * Initial revision
  86.  *
  87.  * ==========================================================================
  88.  */
  89. #endif /* CONNECT___NCBI_COMM__H */