ftp.c needs _http_request()

This commit is contained in:
Dag-Erling Smørgrav 2000-10-12 22:10:43 +00:00
parent 1a16ed4c9c
commit bbc5af0c5a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67044

View File

@ -60,4 +60,15 @@ int _fetch_add_entry(struct url_ent **p, int *size, int *len,
#define DEBUG(x) do { } while (0)
#endif
/*
* I don't really like exporting _http_request() from http.c, but ftp.c
* occasionally needs to use an HTTP proxy, and this saves me from adding
* a lot of special-case code to http.c to handle those cases.
*
* Note that _http_request() frees purl, which is way ugly but saves us a
* whole lot of trouble.
*/
FILE *_http_request(struct url *URL, char *op, struct url_stat *us,
struct url *purl, char *flags);
#endif