]> sjero.net Git - wget/blob - src/retr.h
Updated config.guess, config.sub, install.sh.
[wget] / src / retr.h
1 /* Declarations for retr.c.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3    2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4
5 This file is part of GNU Wget.
6
7 GNU Wget is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Wget is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
19
20 Additional permission under GNU GPL version 3 section 7
21
22 If you modify this program, or any covered work, by linking or
23 combining it with the OpenSSL project's OpenSSL library (or a
24 modified version of that library), containing parts covered by the
25 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
26 grants you additional permission to convey the resulting work.
27 Corresponding Source for a non-source form of such a combination
28 shall include the source code for the parts of OpenSSL used as well
29 as that of the covered work.  */
30
31 #ifndef RETR_H
32 #define RETR_H
33
34 #include "url.h"
35
36 /* These global vars should be made static to retr.c and exported via
37    functions! */
38 extern SUM_SIZE_INT total_downloaded_bytes;
39 extern double total_download_time;
40 extern FILE *output_stream;
41 extern bool output_stream_regular;
42
43 /* Flags for fd_read_body. */
44 enum {
45   rb_read_exactly  = 1,
46   rb_skip_startpos = 2
47 };
48
49 int fd_read_body (int, FILE *, wgint, wgint, wgint *, wgint *, double *, int);
50
51 typedef const char *(*hunk_terminator_t) (const char *, const char *, int);
52
53 char *fd_read_hunk (int, hunk_terminator_t, long, long);
54 char *fd_read_line (int);
55
56 uerr_t retrieve_url (struct url *, const char *, char **, char **,
57                      const char *, int *, bool, struct iri *);
58 uerr_t retrieve_from_file (const char *, bool, int *);
59
60 const char *retr_rate (wgint, double);
61 double calc_rate (wgint, double, int *);
62 void printwhat (int, int);
63
64 void sleep_between_retrievals (int);
65
66 void rotate_backups (const char *);
67
68 bool url_uses_proxy (struct url *);
69
70 #endif /* RETR_H */