~ubuntu-branches/ubuntu/lucid/curl/lucid-201101212007

« back to all changes in this revision

Viewing changes to lib/ftp.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-05-16 15:16:54 UTC
  • mto: (3.1.1 lenny) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20070516151654-x9nkigtr2j0i8d0v
Tags: upstream-7.16.2
ImportĀ upstreamĀ versionĀ 7.16.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
11
11
 *
12
12
 * This software is licensed as described in the file COPYING, which
13
13
 * you should have received as part of this distribution. The terms
20
20
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21
21
 * KIND, either express or implied.
22
22
 *
23
 
 * $Id: ftp.h,v 1.23 2006-04-10 15:00:54 bagder Exp $
 
23
 * $Id: ftp.h,v 1.25 2007-01-27 03:43:06 yangtse Exp $
24
24
 ***************************************************************************/
25
25
 
26
26
#ifndef CURL_DISABLE_FTP
27
27
CURLcode Curl_ftp(struct connectdata *conn, bool *done);
28
 
CURLcode Curl_ftp_done(struct connectdata *conn, CURLcode);
 
28
CURLcode Curl_ftp_done(struct connectdata *conn, CURLcode, bool premature);
29
29
CURLcode Curl_ftp_connect(struct connectdata *conn, bool *done);
30
30
CURLcode Curl_ftp_disconnect(struct connectdata *conn);
31
31
CURLcode Curl_ftpsendf(struct connectdata *, const char *fmt, ...);