diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-23 15:26:26 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-23 15:26:26 +0000 |
commit | fcf02cbb7588d7a7639221d98b8aaf4c8479d822 (patch) | |
tree | eab0c3e708f890af833af950fa8528f016ed7f56 /lib/pingpong.h | |
parent | 419bcf9d6003bd8ddc484fa1f14c5dde1e97e9bf (diff) | |
download | curl-fcf02cbb7588d7a7639221d98b8aaf4c8479d822.tar.gz |
pingpong: Moved curl_ftptransfer definition to pingpong.h
Moved the ftp transfer structure into pingpong.h so other protocols that
require it don't have to include ftp.h.
Diffstat (limited to 'lib/pingpong.h')
-rw-r--r-- | lib/pingpong.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/pingpong.h b/lib/pingpong.h index 3a87e4041..278f0b619 100644 --- a/lib/pingpong.h +++ b/lib/pingpong.h @@ -32,6 +32,13 @@ /* forward-declaration, this is defined in urldata.h */ struct connectdata; +typedef enum { + FTPTRANSFER_BODY, /* yes do transfer a body */ + FTPTRANSFER_INFO, /* do still go through to get info/headers */ + FTPTRANSFER_NONE, /* don't get anything and don't get info */ + FTPTRANSFER_LAST /* end of list marker, never used */ +} curl_ftptransfer; + /* * 'pingpong' is the generic struct used for protocols doing server<->client * conversations in a back-and-forth style such as FTP, IMAP, POP3, SMTP etc. |