blob: 70f8d1b89bb0f021b5ed84a3e4fac5992417362a [file] [log] [blame]
Eric Andersen96700832000-09-04 15:15:55 +00001/* vi: set sw=4 ts=4: */
2/*
3 * wget - retrieve a file using HTTP
4 *
Eric Andersen4e573f42000-11-14 23:29:24 +00005 * Chip Rosenthal Covad Communications <chip@laserlink.net>
Eric Andersenb520e082000-10-03 00:21:45 +00006 *
Eric Andersen4e573f42000-11-14 23:29:24 +00007 * Note: According to RFC2616 section 3.6.1, "All HTTP/1.1 applications MUST be
8 * able to receive and decode the "chunked" transfer-coding, and MUST ignore
9 * chunk-extension extensions they do not understand."
Eric Andersenb520e082000-10-03 00:21:45 +000010 *
Eric Andersen4e573f42000-11-14 23:29:24 +000011 * This prevents this particular wget app from completely RFC compliant, and as
12 * such, prevents it from being used as a general purpose web browser... This
13 * is a design decision, since it makes the code smaller.
Eric Andersenb520e082000-10-03 00:21:45 +000014 *
Eric Andersen96700832000-09-04 15:15:55 +000015 */
16
Eric Andersen3570a342000-09-25 21:45:58 +000017#include "busybox.h"
Eric Andersen96700832000-09-04 15:15:55 +000018#include <stdio.h>
Eric Andersendff9d542001-01-26 02:04:49 +000019#include <errno.h>
Eric Andersen96700832000-09-04 15:15:55 +000020#include <stdlib.h>
21#include <unistd.h>
22#include <ctype.h>
23#include <string.h>
Eric Andersenb520e082000-10-03 00:21:45 +000024#include <unistd.h>
25#include <signal.h>
26#include <sys/ioctl.h>
Eric Andersen96700832000-09-04 15:15:55 +000027
Eric Andersenb520e082000-10-03 00:21:45 +000028#include <sys/time.h>
Eric Andersen96700832000-09-04 15:15:55 +000029#include <sys/types.h>
30#include <sys/stat.h>
31#include <sys/socket.h>
32#include <netinet/in.h>
33#include <arpa/inet.h>
34#include <netdb.h>
35
Eric Andersened3ef502001-01-27 08:24:39 +000036/* Stupid libc5 doesn't define this... */
37#ifndef timersub
38#define timersub(a, b, result) \
39 do { \
40 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
41 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
42 if ((result)->tv_usec < 0) { \
43 --(result)->tv_sec; \
44 (result)->tv_usec += 1000000; \
45 } \
46 } while (0)
47#endif
Eric Andersen96700832000-09-04 15:15:55 +000048
49void parse_url(char *url, char **uri_host, int *uri_port, char **uri_path);
50FILE *open_socket(char *host, int port);
51char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
Eric Andersenb520e082000-10-03 00:21:45 +000052void progressmeter(int flag);
Eric Andersen96700832000-09-04 15:15:55 +000053
Eric Andersenb520e082000-10-03 00:21:45 +000054/* Globals (can be accessed from signal handlers */
55static off_t filesize = 0; /* content-length of the file */
Eric Andersen370fb082001-01-20 20:07:00 +000056#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +000057static char *curfile; /* Name of current file being transferred. */
58static struct timeval start; /* Time a transfer started. */
59volatile unsigned long statbytes; /* Number of bytes transferred so far. */
60/* For progressmeter() -- number of seconds before xfer considered "stalled" */
Mark Whitley59ab0252001-01-23 22:30:04 +000061static const int STALLTIME = 5;
Eric Andersenb520e082000-10-03 00:21:45 +000062#endif
Eric Andersen7d697012001-01-24 20:28:35 +000063
64void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue)
65{
66 if (output != stdout && do_continue==0) {
67 fclose(output);
68 unlink(fname_out);
69 }
70}
Eric Andersen96700832000-09-04 15:15:55 +000071
72int wget_main(int argc, char **argv)
73{
Eric Andersen29edd002000-12-09 16:55:35 +000074 int n;
75 char *proxy, *proxy_host;
76 int uri_port, proxy_port;
77 char *s, buf[512];
78 struct stat sbuf;
79
Eric Andersen96700832000-09-04 15:15:55 +000080 FILE *sfp; /* socket to web server */
81 char *uri_host, *uri_path; /* parsed from command line url */
Eric Andersen96700832000-09-04 15:15:55 +000082 char *fname_out = NULL; /* where to direct output (-O) */
83 int do_continue = 0; /* continue a prev transfer (-c) */
84 long beg_range = 0L; /* range at which continue begins */
85 int got_clen = 0; /* got content-length: from server */
Eric Andersen29edd002000-12-09 16:55:35 +000086 FILE *output; /* socket to web server */
87 int quiet_flag = FALSE; /* Be verry, verry quiet... */
88
Eric Andersen96700832000-09-04 15:15:55 +000089 /*
90 * Crack command line.
91 */
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +000092 while ((n = getopt(argc, argv, "cqO:")) != EOF) {
Eric Andersen96700832000-09-04 15:15:55 +000093 switch (n) {
94 case 'c':
95 ++do_continue;
96 break;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +000097 case 'q':
98 quiet_flag = TRUE;
99 break;
Eric Andersen96700832000-09-04 15:15:55 +0000100 case 'O':
Randolph Chung02553a22000-12-07 03:53:47 +0000101 /* can't set fname_out to NULL if outputting to stdout, because
102 * this gets interpreted as the auto-gen output filename
103 * case below - tausq@debian.org
104 */
105 fname_out = (strcmp(optarg, "-") == 0 ? (char *)1 : optarg);
Eric Andersen96700832000-09-04 15:15:55 +0000106 break;
107 default:
108 usage(wget_usage);
109 }
110 }
Eric Andersen25b669c2000-10-02 23:19:38 +0000111
Eric Andersen96700832000-09-04 15:15:55 +0000112 if (argc - optind != 1)
113 usage(wget_usage);
Eric Andersen25b669c2000-10-02 23:19:38 +0000114
Eric Andersen96700832000-09-04 15:15:55 +0000115 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000116 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000117 */
Eric Andersenf3b2b522000-12-07 22:42:11 +0000118 if ((proxy = getenv("http_proxy")) != NULL) {
119 proxy = xstrdup(proxy);
Eric Andersen29edd002000-12-09 16:55:35 +0000120 parse_url(proxy, &proxy_host, &proxy_port, &uri_path);
121 parse_url(argv[optind], &uri_host, &uri_port, &uri_path);
Eric Andersenf3b2b522000-12-07 22:42:11 +0000122 } else {
123 /*
124 * Parse url into components.
125 */
126 parse_url(argv[optind], &uri_host, &uri_port, &uri_path);
Eric Andersen29edd002000-12-09 16:55:35 +0000127 proxy_host=uri_host;
128 proxy_port=uri_port;
Eric Andersenf3b2b522000-12-07 22:42:11 +0000129 }
Eric Andersen29edd002000-12-09 16:55:35 +0000130
131 /* Guess an output filename */
132 if (!fname_out) {
133 fname_out =
Eric Andersen370fb082001-01-20 20:07:00 +0000134#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000135 curfile =
136#endif
137 get_last_path_component(uri_path);
138 if (fname_out==NULL || strlen(fname_out)<1) {
139 fname_out =
Eric Andersen370fb082001-01-20 20:07:00 +0000140#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000141 curfile =
142#endif
143 "index.html";
144 }
Eric Andersen370fb082001-01-20 20:07:00 +0000145#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000146 } else {
147 curfile=argv[optind];
148#endif
149 }
Eric Andersen7d697012001-01-24 20:28:35 +0000150 if (do_continue && !fname_out)
Matt Kraaidd19c692001-01-31 19:00:21 +0000151 error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000152
Eric Andersen96700832000-09-04 15:15:55 +0000153
154 /*
155 * Open socket to server.
156 */
Eric Andersen29edd002000-12-09 16:55:35 +0000157 sfp = open_socket(proxy_host, proxy_port);
158
159 /* Make the assumption that if the file already exists
160 * on disk that the intention is to continue downloading
161 * a previously aborted download -Erik */
162 if (stat(fname_out, &sbuf) == 0) {
163 ++do_continue;
164 }
Eric Andersen96700832000-09-04 15:15:55 +0000165
166 /*
Eric Andersen29edd002000-12-09 16:55:35 +0000167 * Open the output file stream.
Eric Andersen96700832000-09-04 15:15:55 +0000168 */
Randolph Chung02553a22000-12-07 03:53:47 +0000169 if (fname_out != (char *)1) {
Eric Andersen79e898a2001-01-31 17:49:47 +0000170 output = xfopen( fname_out, (do_continue ? "a" : "w") );
Randolph Chung02553a22000-12-07 03:53:47 +0000171 } else {
172 output = stdout;
Eric Andersen96700832000-09-04 15:15:55 +0000173 }
174
175 /*
176 * Determine where to start transfer.
177 */
178 if (do_continue) {
Eric Andersenb520e082000-10-03 00:21:45 +0000179 if (fstat(fileno(output), &sbuf) < 0)
Matt Kraai0dab8292000-12-18 03:08:29 +0000180 perror_msg_and_die("fstat()");
Eric Andersen96700832000-09-04 15:15:55 +0000181 if (sbuf.st_size > 0)
182 beg_range = sbuf.st_size;
183 else
184 do_continue = 0;
185 }
186
187 /*
188 * Send HTTP request.
189 */
Eric Andersen29edd002000-12-09 16:55:35 +0000190 fprintf(sfp, "GET http://%s:%d/%s HTTP/1.1\r\n",
191 uri_host, uri_port, uri_path);
192 fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", uri_host);
Eric Andersen7d697012001-01-24 20:28:35 +0000193
Eric Andersen96700832000-09-04 15:15:55 +0000194 if (do_continue)
195 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
Eric Andersen29edd002000-12-09 16:55:35 +0000196 fprintf(sfp,"Connection: close\r\n\r\n");
Eric Andersen96700832000-09-04 15:15:55 +0000197
198 /*
199 * Retrieve HTTP response line and check for "200" status code.
200 */
Eric Andersen29edd002000-12-09 16:55:35 +0000201 if (fgets(buf, sizeof(buf), sfp) == NULL) {
Eric Andersen7d697012001-01-24 20:28:35 +0000202 close_and_delete_outfile(output, fname_out, do_continue);
Matt Kraaidd19c692001-01-31 19:00:21 +0000203 error_msg_and_die("no response from server");
Eric Andersen29edd002000-12-09 16:55:35 +0000204 }
Eric Andersen96700832000-09-04 15:15:55 +0000205 for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
206 ;
207 for ( ; isspace(*s) ; ++s)
208 ;
209 switch (atoi(s)) {
Eric Andersen7d697012001-01-24 20:28:35 +0000210 case 0:
Eric Andersenb520e082000-10-03 00:21:45 +0000211 case 200:
Eric Andersen7d697012001-01-24 20:28:35 +0000212 break;
Eric Andersenb520e082000-10-03 00:21:45 +0000213 case 206:
214 if (do_continue)
215 break;
216 /*FALLTHRU*/
217 default:
Eric Andersen7d697012001-01-24 20:28:35 +0000218 close_and_delete_outfile(output, fname_out, do_continue);
219 error_msg_and_die("server returned error %d: %s", atoi(s), buf);
Eric Andersen96700832000-09-04 15:15:55 +0000220 }
221
222 /*
223 * Retrieve HTTP headers.
224 */
225 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
Eric Andersen7d697012001-01-24 20:28:35 +0000226 if (strcasecmp(buf, "content-length") == 0) {
Eric Andersenb520e082000-10-03 00:21:45 +0000227 filesize = atol(s);
Eric Andersen96700832000-09-04 15:15:55 +0000228 got_clen = 1;
229 continue;
230 }
Eric Andersen7d697012001-01-24 20:28:35 +0000231 if (strcasecmp(buf, "transfer-encoding") == 0) {
232 close_and_delete_outfile(output, fname_out, do_continue);
Matt Kraaidd19c692001-01-31 19:00:21 +0000233 error_msg_and_die("server wants to do %s transfer encoding", s);
Eric Andersen96700832000-09-04 15:15:55 +0000234 continue;
235 }
236 }
237
238 /*
239 * Retrieve HTTP body.
240 */
Eric Andersen370fb082001-01-20 20:07:00 +0000241#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +0000242 statbytes=0;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000243 if (quiet_flag==FALSE)
244 progressmeter(-1);
Eric Andersenb520e082000-10-03 00:21:45 +0000245#endif
246 while (filesize > 0 && (n = fread(buf, 1, sizeof(buf), sfp)) > 0) {
247 fwrite(buf, 1, n, output);
Eric Andersen370fb082001-01-20 20:07:00 +0000248#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +0000249 statbytes+=n;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000250 if (quiet_flag==FALSE)
251 progressmeter(1);
Eric Andersenb520e082000-10-03 00:21:45 +0000252#endif
Eric Andersen96700832000-09-04 15:15:55 +0000253 if (got_clen)
Eric Andersenb520e082000-10-03 00:21:45 +0000254 filesize -= n;
Eric Andersen96700832000-09-04 15:15:55 +0000255 }
256 if (n == 0 && ferror(sfp))
Mark Whitleyf57c9442000-12-07 19:56:48 +0000257 perror_msg_and_die("network read error");
Eric Andersen96700832000-09-04 15:15:55 +0000258
259 exit(0);
260}
261
262
263void parse_url(char *url, char **uri_host, int *uri_port, char **uri_path)
264{
Matt Kraaia9711a52001-01-03 16:15:15 +0000265 char *cp, *sp;
Eric Andersen96700832000-09-04 15:15:55 +0000266
267 *uri_port = 80;
268
269 if (strncmp(url, "http://", 7) != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +0000270 error_msg_and_die("not an http url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000271
Matt Kraaia9711a52001-01-03 16:15:15 +0000272 *uri_host = url + 7;
273
274 cp = strchr(*uri_host, ':');
275 sp = strchr(*uri_host, '/');
276
277 if (cp != NULL && (sp == NULL || cp < sp)) {
278 *cp++ = '\0';
279 *uri_port = atoi(cp);
Eric Andersen96700832000-09-04 15:15:55 +0000280 }
Randolph Chung02553a22000-12-07 03:53:47 +0000281
Matt Kraaia9711a52001-01-03 16:15:15 +0000282 if (sp != NULL) {
283 *sp++ = '\0';
284 *uri_path = sp;
285 } else
286 *uri_path = "";
Eric Andersen96700832000-09-04 15:15:55 +0000287}
288
289
290FILE *open_socket(char *host, int port)
291{
292 struct sockaddr_in sin;
293 struct hostent *hp;
294 int fd;
295 FILE *fp;
296
Eric Andersened3ef502001-01-27 08:24:39 +0000297 memset(&sin, 0, sizeof(sin));
Eric Andersen96700832000-09-04 15:15:55 +0000298 sin.sin_family = AF_INET;
299 if ((hp = (struct hostent *) gethostbyname(host)) == NULL)
Matt Kraaidd19c692001-01-31 19:00:21 +0000300 error_msg_and_die("cannot resolve %s", host);
Eric Andersen96700832000-09-04 15:15:55 +0000301 memcpy(&sin.sin_addr, hp->h_addr_list[0], hp->h_length);
302 sin.sin_port = htons(port);
303
304 /*
305 * Get the server onto a stdio stream.
306 */
307 if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000308 perror_msg_and_die("socket()");
Eric Andersen96700832000-09-04 15:15:55 +0000309 if (connect(fd, (struct sockaddr *) &sin, sizeof(sin)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000310 perror_msg_and_die("connect(%s)", host);
Eric Andersen96700832000-09-04 15:15:55 +0000311 if ((fp = fdopen(fd, "r+")) == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000312 perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000313
314 return fp;
315}
316
317
318char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
319{
320 char *s, *hdrval;
321 int c;
322
323 *istrunc = 0;
324
325 /* retrieve header line */
326 if (fgets(buf, bufsiz, fp) == NULL)
327 return NULL;
328
329 /* see if we are at the end of the headers */
330 for (s = buf ; *s == '\r' ; ++s)
331 ;
332 if (s[0] == '\n')
333 return NULL;
334
335 /* convert the header name to lower case */
336 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
337 *s = tolower(*s);
338
339 /* verify we are at the end of the header name */
340 if (*s != ':')
Matt Kraaidd19c692001-01-31 19:00:21 +0000341 error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000342
343 /* locate the start of the header value */
344 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
345 ;
346 hdrval = s;
347
348 /* locate the end of header */
349 while (*s != '\0' && *s != '\r' && *s != '\n')
350 ++s;
351
352 /* end of header found */
353 if (*s != '\0') {
354 *s = '\0';
355 return hdrval;
356 }
357
Eric Andersen5d638842000-09-14 21:46:30 +0000358 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000359 while (c = getc(fp), c != EOF && c != '\n')
360 ;
361 *istrunc = 1;
362 return hdrval;
363}
364
Eric Andersen370fb082001-01-20 20:07:00 +0000365#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen4e573f42000-11-14 23:29:24 +0000366/* Stuff below is from BSD rcp util.c, as added to openshh.
367 * Original copyright notice is retained at the end of this file.
368 *
369 */
Eric Andersenb520e082000-10-03 00:21:45 +0000370
371
372int
373getttywidth(void)
374{
375 struct winsize winsize;
376
377 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
378 return (winsize.ws_col ? winsize.ws_col : 80);
379 else
380 return (80);
381}
382
383void
384updateprogressmeter(int ignore)
385{
386 int save_errno = errno;
387
388 progressmeter(0);
389 errno = save_errno;
390}
391
392void
393alarmtimer(int wait)
394{
395 struct itimerval itv;
396
397 itv.it_value.tv_sec = wait;
398 itv.it_value.tv_usec = 0;
399 itv.it_interval = itv.it_value;
400 setitimer(ITIMER_REAL, &itv, NULL);
401}
402
403
404void
405progressmeter(int flag)
406{
407 static const char prefixes[] = " KMGTP";
408 static struct timeval lastupdate;
409 static off_t lastsize;
410 struct timeval now, td, wait;
411 off_t cursize, abbrevsize;
412 double elapsed;
413 int ratio, barlength, i, remaining;
414 char buf[256];
415
416 if (flag == -1) {
417 (void) gettimeofday(&start, (struct timezone *) 0);
418 lastupdate = start;
419 lastsize = 0;
420 }
421
422 (void) gettimeofday(&now, (struct timezone *) 0);
423 cursize = statbytes;
424 if (filesize != 0) {
425 ratio = 100.0 * cursize / filesize;
426 ratio = MAX(ratio, 0);
427 ratio = MIN(ratio, 100);
428 } else
429 ratio = 100;
430
431 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
432
433 barlength = getttywidth() - 51;
434 if (barlength > 0) {
435 i = barlength * ratio / 100;
436 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
437 "|%.*s%*s|", i,
438 "*****************************************************************************"
439 "*****************************************************************************",
440 barlength - i, "");
441 }
442 i = 0;
443 abbrevsize = cursize;
444 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
445 i++;
446 abbrevsize >>= 10;
447 }
448 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
449 (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
450 'B');
451
452 timersub(&now, &lastupdate, &wait);
453 if (cursize > lastsize) {
454 lastupdate = now;
455 lastsize = cursize;
456 if (wait.tv_sec >= STALLTIME) {
457 start.tv_sec += wait.tv_sec;
458 start.tv_usec += wait.tv_usec;
459 }
460 wait.tv_sec = 0;
461 }
462 timersub(&now, &start, &td);
463 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
464
465 if (statbytes <= 0 || elapsed <= 0.0 || cursize > filesize) {
466 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
467 " --:-- ETA");
468 } else if (wait.tv_sec >= STALLTIME) {
469 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
470 " - stalled -");
471 } else {
472 remaining = (int) (filesize / (statbytes / elapsed) - elapsed);
473 i = remaining / 3600;
474 if (i)
475 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
476 "%2d:", i);
477 else
478 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
479 " ");
480 i = remaining % 3600;
481 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
482 "%02d:%02d ETA", i / 60, i % 60);
483 }
Randolph Chungda7b8292000-12-07 03:55:35 +0000484 write(fileno(stderr), buf, strlen(buf));
Eric Andersenb520e082000-10-03 00:21:45 +0000485
486 if (flag == -1) {
487 struct sigaction sa;
488 sa.sa_handler = updateprogressmeter;
489 sigemptyset(&sa.sa_mask);
490 sa.sa_flags = SA_RESTART;
491 sigaction(SIGALRM, &sa, NULL);
492 alarmtimer(1);
493 } else if (flag == 1) {
494 alarmtimer(0);
495 statbytes = 0;
496 }
497}
498#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000499
Eric Andersen370fb082001-01-20 20:07:00 +0000500/* Original copyright notice which applies to the BB_FEATURE_WGET_STATUSBAR stuff,
Eric Andersen4e573f42000-11-14 23:29:24 +0000501 * much of which was blatently stolen from openssh. */
502
503/*-
504 * Copyright (c) 1992, 1993
505 * The Regents of the University of California. All rights reserved.
506 *
507 * Redistribution and use in source and binary forms, with or without
508 * modification, are permitted provided that the following conditions
509 * are met:
510 * 1. Redistributions of source code must retain the above copyright
511 * notice, this list of conditions and the following disclaimer.
512 * 2. Redistributions in binary form must reproduce the above copyright
513 * notice, this list of conditions and the following disclaimer in the
514 * documentation and/or other materials provided with the distribution.
515 *
516 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
517 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
518 *
519 * 4. Neither the name of the University nor the names of its contributors
520 * may be used to endorse or promote products derived from this software
521 * without specific prior written permission.
522 *
523 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
524 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
525 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
526 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
527 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
528 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
529 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
530 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
531 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
532 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
533 * SUCH DAMAGE.
534 *
Matt Kraaidd19c692001-01-31 19:00:21 +0000535 * $Id: wget.c,v 1.25 2001/01/31 19:00:21 kraai Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000536 */
537
538
539
Eric Andersen96700832000-09-04 15:15:55 +0000540/*
541Local Variables:
542c-file-style: "linux"
543c-basic-offset: 4
544tab-width: 4
545End:
546*/
Eric Andersenb520e082000-10-03 00:21:45 +0000547
Eric Andersen4e573f42000-11-14 23:29:24 +0000548
549