]> sjero.net Git - wget/blob - src/url.h
Fix -c with servers that don't specify a content-length
[wget] / src / url.h
1 /* Declarations for url.c.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3    2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
4    Inc.
5
6 This file is part of GNU Wget.
7
8 GNU Wget is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 GNU Wget is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
20
21 Additional permission under GNU GPL version 3 section 7
22
23 If you modify this program, or any covered work, by linking or
24 combining it with the OpenSSL project's OpenSSL library (or a
25 modified version of that library), containing parts covered by the
26 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
27 grants you additional permission to convey the resulting work.
28 Corresponding Source for a non-source form of such a combination
29 shall include the source code for the parts of OpenSSL used as well
30 as that of the covered work.  */
31
32 #ifndef URL_H
33 #define URL_H
34
35 /* Default port definitions */
36 #define DEFAULT_HTTP_PORT 80
37 #define DEFAULT_FTP_PORT 21
38 #define DEFAULT_HTTPS_PORT 443
39
40 /* This represents how many characters less than the OS max name length a file
41  * should be.  More precisely, a file name should be at most
42  * (NAME_MAX - CHOMP_BUFFER) characters in length.  This number was arrived at
43  * by adding the lengths of all possible strings that could be appended to a
44  * file name later in the code (e.g. ".orig", ".html", etc.).  This is
45  * hopefully plenty of extra characters, but I am not guaranteeing that a file
46  * name will be of the proper length by the time the code wants to open a
47  * file descriptor. */
48 #define CHOMP_BUFFER 19
49
50 /* Specifies how, or whether, user auth information should be included
51  * in URLs regenerated from URL parse structures. */
52 enum url_auth_mode {
53   URL_AUTH_SHOW,
54   URL_AUTH_HIDE_PASSWD,
55   URL_AUTH_HIDE
56 };
57
58 /* Note: the ordering here is related to the order of elements in
59    `supported_schemes' in url.c.  */
60
61 enum url_scheme {
62   SCHEME_HTTP,
63 #ifdef HAVE_SSL
64   SCHEME_HTTPS,
65 #endif
66   SCHEME_FTP,
67   SCHEME_INVALID
68 };
69
70 /* Structure containing info on a URL.  */
71 struct url
72 {
73   char *url;                    /* Original URL */
74   enum url_scheme scheme;       /* URL scheme */
75
76   char *host;                   /* Extracted hostname */
77   int port;                     /* Port number */
78
79   /* URL components (URL-quoted). */
80   char *path;
81   char *params;
82   char *query;
83   char *fragment;
84
85   /* Extracted path info (unquoted). */
86   char *dir;
87   char *file;
88
89   /* Username and password (unquoted). */
90   char *user;
91   char *passwd;
92 };
93
94 /* Function declarations */
95
96 char *url_escape (const char *);
97 char *url_escape_unsafe_and_reserved (const char *);
98
99 struct url *url_parse (const char *, int *, struct iri *iri, bool percent_encode);
100 char *url_error (const char *, int);
101 char *url_full_path (const struct url *);
102 void url_set_dir (struct url *, const char *);
103 void url_set_file (struct url *, const char *);
104 void url_free (struct url *);
105
106 enum url_scheme url_scheme (const char *);
107 bool url_has_scheme (const char *);
108 bool url_valid_scheme (const char *);
109 int scheme_default_port (enum url_scheme);
110 void scheme_disable (enum url_scheme);
111
112 char *url_string (const struct url *, enum url_auth_mode);
113 char *url_file_name (const struct url *, char *);
114
115 char *uri_merge (const char *, const char *);
116
117 int mkalldirs (const char *);
118
119 char *rewrite_shorthand_url (const char *);
120 bool schemes_are_similar_p (enum url_scheme a, enum url_scheme b);
121
122 bool are_urls_equal (const char *u1, const char *u2);
123
124 #endif /* URL_H */