~ubuntu-branches/ubuntu/precise/ncbi-tools6/precise

« back to all changes in this revision

Viewing changes to network/nsclilib/ni_debug.c

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-03-27 12:00:15 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050327120015-embhesp32nj73p9r
Tags: 6.1.20041020-3
* Fix FTBFS under GCC 4.0 caused by inconsistent use of "static" on
  functions.  (Closes: #295110.)
* Add a watch file, now that we can.  (Upstream's layout needs version=3.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  $RCSfile: ni_debug.c,v $  $Revision: 6.3 $  $Date: 2001/02/21 22:09:27 $
2
 
* ==========================================================================
3
 
*
4
 
*                            PUBLIC DOMAIN NOTICE
5
 
*               National Center for Biotechnology Information
6
 
*
7
 
*  This software/database is a "United States Government Work" under the
8
 
*  terms of the United States Copyright Act.  It was written as part of
9
 
*  the author's official duties as a United States Government employee and
10
 
*  thus cannot be copyrighted.  This software/database is freely available
11
 
*  to the public for use. The National Library of Medicine and the U.S.
12
 
*  Government have not placed any restriction on its use or reproduction.
13
 
*
14
 
*  Although all reasonable efforts have been taken to ensure the accuracy
15
 
*  and reliability of the software and data, the NLM and the U.S.
16
 
*  Government do not and cannot warrant the performance or results that
17
 
*  may be obtained by using this software or data. The NLM and the U.S.
18
 
*  Government disclaim all warranties, express or implied, including
19
 
*  warranties of performance, merchantability or fitness for any particular
20
 
*  purpose.
21
 
*
22
 
*  Please cite the author in any work or product based on this material.
23
 
*
24
 
* ==========================================================================
25
 
*
26
 
* Author:  Denis Vakatov
27
 
*
28
 
* File Description:
29
 
*   Basic client code for the debug NCBI client that connects
30
 
*   directly to the standalone server(bypasses NCBI dispatchers)
31
 
*
32
 
* --------------------------------------------------------------------------
33
 
* $Log: ni_debug.c,v $
34
 
* Revision 6.3  2001/02/21 22:09:27  lavr
35
 
* SERVICE connector included
36
 
*
37
 
* Revision 6.2  1999/03/11 15:20:22  vakatov
38
 
* Added "timeout" arg to SOCK_Create() and SOCK_Reconnect()
39
 
*
40
 
* Revision 6.1  1998/05/05 22:23:35  vakatov
41
 
* Initial revision
42
 
*
43
 
* ==========================================================================
44
 
*/
 
1
/* $Id: ni_debug.c,v 6.4 2003/10/27 14:11:10 lavr Exp $
 
2
 * ==========================================================================
 
3
 *
 
4
 *                            PUBLIC DOMAIN NOTICE
 
5
 *               National Center for Biotechnology Information
 
6
 *
 
7
 *  This software/database is a "United States Government Work" under the
 
8
 *  terms of the United States Copyright Act.  It was written as part of
 
9
 *  the author's official duties as a United States Government employee and
 
10
 *  thus cannot be copyrighted.  This software/database is freely available
 
11
 *  to the public for use. The National Library of Medicine and the U.S.
 
12
 *  Government have not placed any restriction on its use or reproduction.
 
13
 *
 
14
 *  Although all reasonable efforts have been taken to ensure the accuracy
 
15
 *  and reliability of the software and data, the NLM and the U.S.
 
16
 *  Government do not and cannot warrant the performance or results that
 
17
 *  may be obtained by using this software or data. The NLM and the U.S.
 
18
 *  Government disclaim all warranties, express or implied, including
 
19
 *  warranties of performance, merchantability or fitness for any particular
 
20
 *  purpose.
 
21
 *
 
22
 *  Please cite the author in any work or product based on this material.
 
23
 *
 
24
 * ==========================================================================
 
25
 *
 
26
 * Author:  Denis Vakatov
 
27
 *
 
28
 * File Description:
 
29
 *   Basic client code for the debug NCBI client that connects
 
30
 *   directly to the standalone server (bypasses NCBI dispatchers)
 
31
 *
 
32
 * --------------------------------------------------------------------------
 
33
 * $Log: ni_debug.c,v $
 
34
 * Revision 6.4  2003/10/27 14:11:10  lavr
 
35
 * Old (Shavirin's) dispatchers disabled unconditionally
 
36
 *
 
37
 * Revision 6.3  2001/02/21 22:09:27  lavr
 
38
 * SERVICE connector added
 
39
 *
 
40
 * Revision 6.2  1999/03/11 15:20:22  vakatov
 
41
 * Added "timeout" arg to SOCK_Create() and SOCK_Reconnect()
 
42
 *
 
43
 * Revision 6.1  1998/05/05 22:23:35  vakatov
 
44
 * Initial revision
 
45
 *
 
46
 * ==========================================================================
 
47
 */
45
48
 
46
49
#include <ncbi.h>
47
50
#include <ncbinet.h>