X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fretr.h;h=8854b68404179a252f4dca1ce165dec1fec26104;hp=0f92026847a0e8e268a1189fa1ac5b15f43c1043;hb=a9a2b34b052cfa903462124f59fbfeed7eaf374b;hpb=714ccdcd844314cc3902fa4fd1b48757d9db9296 diff --git a/src/retr.h b/src/retr.h index 0f920268..8854b684 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; @@ -41,8 +43,7 @@ extern bool output_stream_regular; /* Flags for fd_read_body. */ enum { rb_read_exactly = 1, - rb_skip_startpos = 2, - rb_ftp_ascii = 4 + rb_skip_startpos = 2 }; int fd_read_body (int, FILE *, wgint, wgint, wgint *, wgint *, double *, int); @@ -52,7 +53,8 @@ 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, struct iri *); uerr_t retrieve_from_file (const char *, bool, int *); const char *retr_rate (wgint, double); @@ -63,6 +65,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 */