X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fretr.h;h=72be93b718d067ab11af0394aca81537ba5047eb;hp=ec55cfdaf5284683c82aa986c011abd92a372b33;hb=ea3745e8dc2f63cc26557f111f77374dc63e5976;hpb=857224758e60c6b206015ea4b9b30c79332a5b4c diff --git a/src/retr.h b/src/retr.h index ec55cfda..72be93b7 100644 --- a/src/retr.h +++ b/src/retr.h @@ -31,6 +31,8 @@ as that of the covered work. */ #ifndef RETR_H #define RETR_H +#include "url.h" + /* These global vars should be made static to retr.c and exported via functions! */ extern SUM_SIZE_INT total_downloaded_bytes; @@ -51,7 +53,7 @@ typedef const char *(*hunk_terminator_t) (const char *, const char *, int); char *fd_read_hunk (int, hunk_terminator_t, long, long); char *fd_read_line (int); -uerr_t retrieve_url (const char *, char **, char **, const char *, int *, bool); +uerr_t retrieve_url (struct url *, const char *, char **, char **, const char *, int *, bool); uerr_t retrieve_from_file (const char *, bool, int *); const char *retr_rate (wgint, double); @@ -62,6 +64,6 @@ void sleep_between_retrievals (int); void rotate_backups (const char *); -bool url_uses_proxy (const char *); +bool url_uses_proxy (struct url *); #endif /* RETR_H */