mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
pingpong: Renamed curl_ftptransfer to curl_pp_transfer
This commit is contained in:
parent
0ee79114ef
commit
4afcb77820
@ -7,7 +7,7 @@
|
|||||||
* | (__| |_| | _ <| |___
|
* | (__| |_| | _ <| |___
|
||||||
* \___|\___/|_| \_\_____|
|
* \___|\___/|_| \_\_____|
|
||||||
*
|
*
|
||||||
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
* Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||||
*
|
*
|
||||||
* This software is licensed as described in the file COPYING, which
|
* This software is licensed as described in the file COPYING, which
|
||||||
* you should have received as part of this distribution. The terms
|
* you should have received as part of this distribution. The terms
|
||||||
@ -108,7 +108,7 @@ struct FTP {
|
|||||||
|
|
||||||
/* transfer a file/body or not, done as a typedefed enum just to make
|
/* transfer a file/body or not, done as a typedefed enum just to make
|
||||||
debuggers display the full symbol and not just the numerical value */
|
debuggers display the full symbol and not just the numerical value */
|
||||||
curl_ftptransfer transfer;
|
curl_pp_transfer transfer;
|
||||||
curl_off_t downloadsize;
|
curl_off_t downloadsize;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ typedef enum {
|
|||||||
used. */
|
used. */
|
||||||
struct IMAP {
|
struct IMAP {
|
||||||
curl_off_t *bytecountp;
|
curl_off_t *bytecountp;
|
||||||
curl_ftptransfer transfer;
|
curl_pp_transfer transfer;
|
||||||
char *mailbox; /* Mailbox to select */
|
char *mailbox; /* Mailbox to select */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ typedef enum {
|
|||||||
FTPTRANSFER_INFO, /* do still go through to get info/headers */
|
FTPTRANSFER_INFO, /* do still go through to get info/headers */
|
||||||
FTPTRANSFER_NONE, /* don't get anything and don't get info */
|
FTPTRANSFER_NONE, /* don't get anything and don't get info */
|
||||||
FTPTRANSFER_LAST /* end of list marker, never used */
|
FTPTRANSFER_LAST /* end of list marker, never used */
|
||||||
} curl_ftptransfer;
|
} curl_pp_transfer;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 'pingpong' is the generic struct used for protocols doing server<->client
|
* 'pingpong' is the generic struct used for protocols doing server<->client
|
||||||
|
@ -58,7 +58,7 @@ typedef enum {
|
|||||||
used. */
|
used. */
|
||||||
struct POP3 {
|
struct POP3 {
|
||||||
curl_off_t *bytecountp;
|
curl_off_t *bytecountp;
|
||||||
curl_ftptransfer transfer;
|
curl_pp_transfer transfer;
|
||||||
char *mailbox; /* Message ID */
|
char *mailbox; /* Message ID */
|
||||||
char *custom; /* Custom Request */
|
char *custom; /* Custom Request */
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user