/usr/include/ncbi/ncbinet.h is in libncbi6-dev 6.1.20120620-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* $Id: ncbinet.h,v 6.8 2012/02/19 03:45:24 lavr 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.
*
* ===========================================================================
*
* File Name: ncbinet.h
*
* Author: Beatty, Gish
*
* Version Creation Date: 1/1/92
*
* $Revision: 6.8 $
*
* File Description:
*
*
* Modifications:
* --------------------------------------------------------------------------
* $Log: ncbinet.h,v $
* Revision 6.8 2012/02/19 03:45:24 lavr
* Cleanup of obsolete features
*
* Revision 6.7 2005/07/25 18:06:48 lavr
* Remove deprecated ni_ API references
*
* Revision 6.6 2001/04/05 04:02:21 juran
* Removed MacTCP-enabling preprocessor hacks.
*
* Revision 6.5 2000/07/08 20:44:05 vakatov
* Get all "#include" out of the 'extern "C" { }' scope; other cleanup...
*
* Revision 6.4 1999/07/30 19:11:05 vakatov
* Use "strerror()" instead of "sys_errlist[]"
*
* Revision 6.3 1998/08/05 20:22:11 vakatov
* [OS_UNIX] Dont declare "errno" as extern if it's #define'd(e.g. on
* the MT platforms it can be #define'd to a function)
*
* Revision 6.2 1998/03/30 17:58:44 vakatov
* Included <ni_lib_.h> (some function protos were moved to there)
*
* Revision 3.1 1998/03/17 20:39:52 vakatov
* <save> [UNIX] +compiled OK with "ni_www_.[ch]" and "ni_lib_.[ch]" and
* modified "ni_types.h" and "ncbinet.h"
*
* Revision 6.1 1997/11/18 21:14:12 epstein
* special handling for Linux/Alpha
*
* Revision 5.2 1997/07/01 19:12:41 vakatov
* [WIN32] DLL'd "netcli.lib"
*
* Revision 5.1 1996/10/02 18:18:42 epstein
* add function NI_FqdnToIpaddr()
*
* Revision 4.1 1995/11/27 20:59:09 epstein
* add client support for direct-connection services
*
* 01/21/94 Schuler Replaced
*/
#ifndef _NCBINET_
#define _NCBINET_
#include <ni_types.h> /* include <ncbi.h> */
#include <ni_error.h>
#include <ni_lib_.h>
#undef NLM_EXTERN
#ifdef NLM_IMPORT
#define NLM_EXTERN NLM_IMPORT
#else
#define NLM_EXTERN extern
#endif
#ifdef __cplusplus
extern "C" {
#endif
NLM_EXTERN NI_HandPtr NI_ServiceGet PROTO((NI_DispatcherPtr disp, CharPtr svc, Uint2 svcvermin, Uint2 svcvermax, CharPtr res, CharPtr restype, Uint2 resvermin, Uint2 resvermax));
NLM_EXTERN Int2 NI_GetPlatform PROTO((void));
#undef NLM_EXTERN
#ifdef NLM_EXPORT
#define NLM_EXTERN NLM_EXPORT
#else
#define NLM_EXTERN
#endif
#ifdef __cplusplus
}
#endif
#endif
|