summaryrefslogtreecommitdiff
path: root/ftp.h
diff options
context:
space:
mode:
authorewt <devnull@localhost>1996-02-27 17:37:03 +0000
committerewt <devnull@localhost>1996-02-27 17:37:03 +0000
commitf9c1e8d7281d369ac194a74505c9cb4eddea1d77 (patch)
tree56f4d63cc42b0c4d6e7ee9d4dd7ff2509342bb8c /ftp.h
parentfbb56975fb19ddaf7bcf6553005b354dc8b3a6bc (diff)
downloadrpm-f9c1e8d7281d369ac194a74505c9cb4eddea1d77.tar.gz
rpm-f9c1e8d7281d369ac194a74505c9cb4eddea1d77.tar.bz2
rpm-f9c1e8d7281d369ac194a74505c9cb4eddea1d77.zip
Initial revision
CVS patchset: 429 CVS date: 1996/02/27 17:37:03
Diffstat (limited to 'ftp.h')
-rw-r--r--ftp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ftp.h b/ftp.h
new file mode 100644
index 000000000..ed15704b5
--- /dev/null
+++ b/ftp.h
@@ -0,0 +1,8 @@
+#ifndef H_FTP
+#define H_FTP
+
+int ftpOpen(char * host, char * name, char * password);
+int ftpGetFile(int sock, char * remotename, int dest);
+void ftpClose(int sock);
+
+#endif