pingpong: Renamed curl_ftptransfer to curl_pp_transfer
authorSteve Holme <steve_holme@hotmail.com>
Sat, 23 Feb 2013 17:09:24 +0000 (17:09 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Sat, 23 Feb 2013 17:09:24 +0000 (17:09 +0000)
lib/ftp.h
lib/imap.h
lib/pingpong.h
lib/pop3.h

index aae05a7..bdd59c9 100644 (file)
--- a/lib/ftp.h
+++ b/lib/ftp.h
@@ -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
  * 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
      debuggers display the full symbol and not just the numerical value */
-  curl_ftptransfer transfer;
+  curl_pp_transfer transfer;
   curl_off_t downloadsize;
 };
 
index 1841ddf..6fa1ba4 100644 (file)
@@ -57,7 +57,7 @@ typedef enum {
    used. */
 struct IMAP {
   curl_off_t *bytecountp;
-  curl_ftptransfer transfer;
+  curl_pp_transfer transfer;
   char *mailbox;          /* Mailbox to select */
 };
 
index 278f0b6..b925ab9 100644 (file)
@@ -37,7 +37,7 @@ typedef enum {
   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;
+} curl_pp_transfer;
 
 /*
  * 'pingpong' is the generic struct used for protocols doing server<->client
index cfad93c..05df8bc 100644 (file)
@@ -58,7 +58,7 @@ typedef enum {
    used. */
 struct POP3 {
   curl_off_t *bytecountp;
-  curl_ftptransfer transfer;
+  curl_pp_transfer transfer;
   char *mailbox;          /* Message ID */
   char *custom;           /* Custom Request */
 };