download and highlevel are replaced with transfer
authorDaniel Stenberg <daniel@haxx.se>
Wed, 17 Jan 2001 13:19:01 +0000 (13:19 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 17 Jan 2001 13:19:01 +0000 (13:19 +0000)
lib/download.c [deleted file]
lib/highlevel.h [deleted file]
lib/transfer.c [moved from lib/highlevel.c with 95% similarity]
lib/transfer.h [moved from lib/download.h with 94% similarity]

diff --git a/lib/download.c b/lib/download.c
deleted file mode 100644 (file)
index 1f79ec1..0000000
+++ /dev/null
@@ -1,99 +0,0 @@
-/*****************************************************************************
- *                                  _   _ ____  _     
- *  Project                     ___| | | |  _ \| |    
- *                             / __| | | | |_) | |    
- *                            | (__| |_| |  _ <| |___ 
- *                             \___|\___/|_| \_\_____|
- *
- * Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al.
- *
- * In order to be useful for every potential user, curl and libcurl are
- * dual-licensed under the MPL and the MIT/X-derivate licenses.
- *
- * You may opt to use, copy, modify, merge, publish, distribute and/or sell
- * copies of the Software, and permit persons to whom the Software is
- * furnished to do so, under the terms of the MPL or the MIT/X-derivate
- * licenses. You may pick one of these licenses.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- * $Id$
- *****************************************************************************/
-
-#include "setup.h"
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-
-#ifdef HAVE_SYS_TYPES_H
-#include <sys/types.h>
-#endif
-
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-#ifdef HAVE_SYS_SELECT_H
-#include <sys/select.h>
-#endif
-
-#include "urldata.h"
-#include <curl/curl.h>
-
-#ifdef __BEOS__
-#include <net/socket.h>
-#endif
-
-#ifdef WIN32
-#if !defined( __GNUC__) || defined(__MINGW32__)
-#include <winsock.h>
-#endif
-#include <time.h> /* for the time_t typedef! */
-
-#if defined(__GNUC__) && defined(TIME_WITH_SYS_TIME)
-#include <sys/time.h>
-#endif
-
-#endif
-
-#include "progress.h"
-#include "sendf.h"
-
-#include <curl/types.h>
-
-/* --- download and upload a stream from/to a socket --- */
-
-/* Parts of this function was brought to us by the friendly Mark Butler
-   <butlerm@xmission.com>. */
-
-CURLcode 
-Curl_Transfer(CURLconnect *c_conn,
-         /* READ stuff */
-         int sockfd,           /* socket to read from or -1 */
-         int size,             /* -1 if unknown at this point */
-         bool getheader,       /* TRUE if header parsing is wanted */
-         long *bytecountp,     /* return number of bytes read or NULL */
-          
-          /* WRITE stuff */
-          int writesockfd,      /* socket to write to, it may very well be
-                                   the same we read from. -1 disables */
-          long *writebytecountp /* return number of bytes written or NULL */
-          )
-{
-  struct connectdata *conn = (struct connectdata *)c_conn;
-  if(!conn)
-    return CURLE_BAD_FUNCTION_ARGUMENT;
-
-  /* now copy all input parameters */
-  conn->sockfd = sockfd;
-  conn->size = size;
-  conn->getheader = getheader;
-  conn->bytecountp = bytecountp;
-  conn->writesockfd = writesockfd;
-  conn->writebytecountp = writebytecountp;
-
-  return CURLE_OK;
-
-}
-          
diff --git a/lib/highlevel.h b/lib/highlevel.h
deleted file mode 100644 (file)
index 05a7e7c..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef __HIGHLEVEL_H
-#define __HIGHLEVEL_H
-/*****************************************************************************
- *                                  _   _ ____  _     
- *  Project                     ___| | | |  _ \| |    
- *                             / __| | | | |_) | |    
- *                            | (__| |_| |  _ <| |___ 
- *                             \___|\___/|_| \_\_____|
- *
- * Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al.
- *
- * In order to be useful for every potential user, curl and libcurl are
- * dual-licensed under the MPL and the MIT/X-derivate licenses.
- *
- * You may opt to use, copy, modify, merge, publish, distribute and/or sell
- * copies of the Software, and permit persons to whom the Software is
- * furnished to do so, under the terms of the MPL or the MIT/X-derivate
- * licenses. You may pick one of these licenses.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- * $Id$
- *****************************************************************************/
-CURLcode curl_transfer(CURL *curl);
-#endif
similarity index 95%
rename from lib/highlevel.c
rename to lib/transfer.c
index ef05123..c164ca1 100644 (file)
@@ -84,7 +84,7 @@
 
 #include "getenv.h"
 #include "hostip.h"
-#include "download.h"
+#include "transfer.h"
 #include "sendf.h"
 #include "speedcheck.h"
 #include "getpass.h"
 #define min(a, b)   ((a) < (b) ? (a) : (b))
 #endif
 
+/* Parts of this function was written by the friendly Mark Butler
+   <butlerm@xmission.com>. */
+
 CURLcode static
 _Transfer(struct connectdata *c_conn)
 {
@@ -733,3 +736,32 @@ CURLcode curl_transfer(CURL *curl)
   return res;
 }
 
+
+CURLcode 
+Curl_Transfer(struct connectdata *c_conn, /* connection data */
+              int sockfd,      /* socket to read from or -1 */
+              int size,                /* -1 if unknown at this point */
+              bool getheader,  /* TRUE if header parsing is wanted */
+              long *bytecountp,        /* return number of bytes read or NULL */
+              int writesockfd,  /* socket to write to, it may very well be
+                                   the same we read from. -1 disables */
+              long *writebytecountp /* return number of bytes written or
+                                       NULL */
+              )
+{
+  struct connectdata *conn = (struct connectdata *)c_conn;
+  if(!conn)
+    return CURLE_BAD_FUNCTION_ARGUMENT;
+
+  /* now copy all input parameters */
+  conn->sockfd = sockfd;
+  conn->size = size;
+  conn->getheader = getheader;
+  conn->bytecountp = bytecountp;
+  conn->writesockfd = writesockfd;
+  conn->writebytecountp = writebytecountp;
+
+  return CURLE_OK;
+
+}
+          
similarity index 94%
rename from lib/download.h
rename to lib/transfer.h
index 3c894dd..ef3d6da 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __DOWNLOAD_H
-#define __DOWNLOAD_H
+#ifndef __TRANSFER_H
+#define __TRANSFER_H
 /*****************************************************************************
  *                                  _   _ ____  _     
  *  Project                     ___| | | |  _ \| |    
@@ -22,6 +22,8 @@
  *
  * $Id$
  *****************************************************************************/
+CURLcode curl_transfer(CURL *curl);
+
 CURLcode 
 Curl_Transfer (struct connectdata *data,
                int sockfd,             /* socket to read from or -1 */
@@ -33,8 +35,10 @@ Curl_Transfer (struct connectdata *data,
                long *writebytecountp /* return number of bytes written */
 );
 
+#ifdef _OLDCURL
 /* "hackish" define to make sources compile without too much human editing.
    Don't use "Tranfer()" anymore! */
 #define Transfer(a,b,c,d,e,f,g) Curl_Transfer(a,b,c,d,e,f,g)
+#endif
 
 #endif