diff options
author | ewt <devnull@localhost> | 1996-10-15 03:15:52 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1996-10-15 03:15:52 +0000 |
commit | 4f6655c287738665b16dc5103a3e68c5939d900c (patch) | |
tree | cadb6e595f6b3987f4445791ff4a094649eb724a /url.h | |
parent | 32095d5f4ab554b863cae3cbac77fb49e6e48a4f (diff) | |
download | rpm-4f6655c287738665b16dc5103a3e68c5939d900c.tar.gz rpm-4f6655c287738665b16dc5103a3e68c5939d900c.tar.bz2 rpm-4f6655c287738665b16dc5103a3e68c5939d900c.zip |
Initial revision
CVS patchset: 1098
CVS date: 1996/10/15 03:15:52
Diffstat (limited to 'url.h')
-rw-r--r-- | url.h | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +#ifndef H_URL +#define H_URL + +#include "ftp.h" + +/* right now, only ftp type URL's are supported */ + +struct urlContext { + int ftpControl; +}; + +int urlIsURL(char * url); +int urlGetFile(char * url, char * dest); +int urlGetFd(char * url, struct urlContext * context); +int urlFinishedFd(struct urlContext * context); + +#endif |