1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
#ifndef CONNECT___NCBI_SERVER_INFOP__H
#define CONNECT___NCBI_SERVER_INFOP__H
/* $Id: ncbi_server_infop.h,v 6.8 2005/12/29 16:28:09 dicuccio Exp $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government have not placed any restriction on its use or reproduction.
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
* Author: Anton Lavrentiev
*
* File Description:
* NCBI server meta-address info (private part)
*
*/
#include "ncbi_host_infop.h"
#include <connect/ncbi_server_info.h>
#ifdef __cplusplus
extern "C" {
#endif
int/*bool*/ SERV_SetLocalServerDefault(int/*bool*/ onoff);
/* Constructors for the various types of NCBI server meta-addresses
*/
SSERV_Info* SERV_CreateNcbidInfoEx
(unsigned int host, /* network byte order */
unsigned short port, /* host byte order */
const char* args,
size_t add
);
SSERV_Info* SERV_CreateStandaloneInfoEx
(unsigned int host, /* network byte order */
unsigned short port, /* host byte order */
size_t add
);
SSERV_Info* SERV_CreateHttpInfoEx
(ESERV_Type type, /* verified, must be one of fSERV_Http* */
unsigned int host, /* network byte order */
unsigned short port, /* host byte order */
const char* path,
const char* args,
size_t add
);
SSERV_Info* SERV_CreateFirewallInfoEx
(unsigned int host, /* original server's host in net byte order */
unsigned short port, /* original server's port in host byte order */
ESERV_Type type, /* type of original server, wrapped into */
size_t add
);
SSERV_Info* SERV_CreateDnsInfoEx
(unsigned int host, /* the only parameter */
size_t add
);
SSERV_Info* SERV_ReadInfoEx
(const char* info_str,
const char* name
);
NCBI_XCONNECT_EXPORT
SSERV_Info* SERV_CopyInfoEx
(const SSERV_Info* orig,
const char* name
);
NCBI_XCONNECT_EXPORT
const char* SERV_NameOfInfo
(const SSERV_Info* info
);
#ifdef __cplusplus
} /* extern "C" */
#endif
/*
* --------------------------------------------------------------------------
* $Log: ncbi_server_infop.h,v $
* Revision 6.8 2005/12/29 16:28:09 dicuccio
* Drop #include that was confusing the C toolkit's build
*
* Revision 6.7 2005/12/29 12:47:12 dicuccio
* Export a couple of internal functions needed by connext
*
* Revision 6.6 2005/12/14 21:24:23 lavr
* Name parameter for SERV_ReadInfoEx() (instead of "add")
* +SERV_CopyInfoEx(), +SERV_NameOfInfo()
*
* Revision 6.5 2005/07/11 18:13:52 lavr
* Introduce *Ex constructors to take additinal mem size to allocate at end
*
* Revision 6.4 2002/10/28 20:15:21 lavr
* +<connect/ncbi_server_info.h>
*
* Revision 6.3 2002/09/19 18:08:38 lavr
* Header file guard macro changed; log moved to end
*
* Revision 6.2 2001/11/25 22:12:06 lavr
* Replaced g_SERV_LocalServerDefault -> SERV_SetLocalServerDefault()
*
* Revision 6.1 2001/11/16 20:25:53 lavr
* +g_SERV_LocalServerDefault as a private global parameter
*
* ==========================================================================
*/
#endif /* CONNECT___NCBI_SERVER_INFOP__H */
|