~ubuntu-branches/ubuntu/karmic/ncbi-tools6/karmic

« back to all changes in this revision

Viewing changes to connect/ncbi_ftp_connector.h

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2009-03-19 10:17:26 UTC
  • mfrom: (1.3.1 upstream) (5.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090319101726-wjuj7ajnq0w5a0mg
Tags: 6.1.20090301-1
* New upstream release; uploading to unstable now that lenny is out.
* debian/lib{ncbi6,vibrant6a}.symbols: update accordingly.
* doc/man/*.1: update accordingly as well.
* debian/control: place lib*-dbg in the new debug section, per the
  current override file.
* debian/control: declare compliance with Policy 3.8.1 (no changes needed).
* api/aliread.c: merge in fix (from 6.1.20080302-4) to undefined use of
  sprintf caught by Kees Cook's scan.
* debian/watch: belatedly update regex to recognize releases like the
  previous one ([6.1.]20081116a).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef CONNECT___NCBI_FTP_CONNECTOR__H
2
2
#define CONNECT___NCBI_FTP_CONNECTOR__H
3
3
 
4
 
/*  $Id: ncbi_ftp_connector.h,v 1.2 2005/05/18 18:17:02 lavr Exp $
 
4
/* $Id: ncbi_ftp_connector.h,v 1.3 2008/10/16 18:55:44 kazimird Exp $
5
5
 * ===========================================================================
6
6
 *
7
7
 *                            PUBLIC DOMAIN NOTICE
52
52
 
53
53
 
54
54
typedef enum {
55
 
    eFCDC_LogControl = 1,
56
 
    eFCDC_LogData    = 2,
57
 
    eFCDC_LogAll     = eFCDC_LogControl | eFCDC_LogData
 
55
    fFCDC_LogControl = 1,
 
56
    fFCDC_LogData    = 2,
 
57
    fFCDC_LogAll     = fFCDC_LogControl | fFCDC_LogData
58
58
} EFCDC_Flags;
59
59
typedef unsigned int TFCDC_Flags;
60
60
 
 
61
typedef enum { /* DEPRECATED -- DON'T USE */
 
62
    eFCDC_LogControl = fFCDC_LogControl,
 
63
    eFCDC_LogData    = fFCDC_LogData,
 
64
    eFCDC_LogAll     = fFCDC_LogAll
 
65
} EFCDC_OldFlags;
 
66
 
61
67
 
62
68
/* Create new CONNECTOR structure to handle ftp download transfer.
63
69
 * Return NULL on error.
79
85
 
80
86
/* @} */
81
87
 
82
 
 
83
 
/*
84
 
 * --------------------------------------------------------------------------
85
 
 * $Log: ncbi_ftp_connector.h,v $
86
 
 * Revision 1.2  2005/05/18 18:17:02  lavr
87
 
 * Add EFCDC_Flags and TFCDC_Flags to better control underlying SOCK logs
88
 
 *
89
 
 * Revision 1.1  2004/12/06 17:48:19  lavr
90
 
 * Initial revision
91
 
 *
92
 
 * ==========================================================================
93
 
 */
94
 
 
95
88
#endif /* CONNECT___NCBI_FTP_CONNECTOR__H */