summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/url.h
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-01-11 18:22:35 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-01-11 18:22:35 +0000
commitd0bb62e6765577e1a845792a0c9502eff46bd8a5 (patch)
tree23398cddd073e03674fd230454b029b2969fcc48 /mdk-stage1/url.h
parent78c546d40cff285747ead9c15e5cb5b9496b7164 (diff)
downloaddrakx-d0bb62e6765577e1a845792a0c9502eff46bd8a5.tar
drakx-d0bb62e6765577e1a845792a0c9502eff46bd8a5.tar.gz
drakx-d0bb62e6765577e1a845792a0c9502eff46bd8a5.tar.bz2
drakx-d0bb62e6765577e1a845792a0c9502eff46bd8a5.tar.xz
drakx-d0bb62e6765577e1a845792a0c9502eff46bd8a5.zip
*** empty log message ***
Diffstat (limited to 'mdk-stage1/url.h')
-rw-r--r--mdk-stage1/url.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/mdk-stage1/url.h b/mdk-stage1/url.h
new file mode 100644
index 000000000..45d9bd6f6
--- /dev/null
+++ b/mdk-stage1/url.h
@@ -0,0 +1,44 @@
+/*
+ * Guillaume Cottenceau (gc@mandrakesoft.com)
+ *
+ * Copyright 2000 MandrakeSoft
+ *
+ * This software may be freely redistributed under the terms of the GNU
+ * public license.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+/*
+ * Portions from Erik Troan <ewt@redhat.com> and Matt Wilson <msw@redhat.com>
+ *
+ * Copyright 1999 Red Hat, Inc.
+ *
+ */
+
+#ifndef _URL_H_
+#define _URL_H_
+
+int ftp_open_connection(char * host, char * name, char * password, char * proxy);
+int ftp_start_download(int sock, char * remotename, int * size);
+int ftp_end_data_command(int sock);
+
+int http_download_file(char * hostname, char * remotename);
+
+
+#define FTPERR_BAD_SERVER_RESPONSE -1
+#define FTPERR_SERVER_IO_ERROR -2
+#define FTPERR_SERVER_TIMEOUT -3
+#define FTPERR_BAD_HOST_ADDR -4
+#define FTPERR_BAD_HOSTNAME -5
+#define FTPERR_FAILED_CONNECT -6
+#define FTPERR_FILE_IO_ERROR -7
+#define FTPERR_PASSIVE_ERROR -8
+#define FTPERR_FAILED_DATA_CONNECT -9
+#define FTPERR_FILE_NOT_FOUND -10
+#define FTPERR_UNKNOWN -100
+
+#endif