Update applet define from BB_CP_MV to BB_CP and BB_MV.
[oweals/busybox.git] / wget.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * wget - retrieve a file using HTTP or FTP
4  *
5  * Chip Rosenthal Covad Communications <chip@laserlink.net>
6  *
7  */
8
9 #include <stdio.h>
10 #include <errno.h>
11 #include <stdlib.h>
12 #include <unistd.h>
13 #include <ctype.h>
14 #include <string.h>
15 #include <unistd.h>
16 #include <signal.h>
17 #include <sys/ioctl.h>
18
19 #include <sys/time.h>
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <netdb.h>
26
27 #include "busybox.h"
28
29 /* Stupid libc5 doesn't define this... */
30 #ifndef timersub
31 #define timersub(a, b, result)                                                \
32   do {                                                                        \
33     (result)->tv_sec = (a)->tv_sec - (b)->tv_sec;                             \
34     (result)->tv_usec = (a)->tv_usec - (b)->tv_usec;                          \
35     if ((result)->tv_usec < 0) {                                              \
36       --(result)->tv_sec;                                                     \
37       (result)->tv_usec += 1000000;                                           \
38     }                                                                         \
39   } while (0)
40 #endif  
41
42 struct host_info {
43         char *host;
44         int port;
45         char *path;
46         int is_ftp;
47         char *user;
48 };
49
50 static void parse_url(char *url, struct host_info *h);
51 static FILE *open_socket(char *host, int port);
52 static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
53 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
54 static void progressmeter(int flag);
55
56 /* Globals (can be accessed from signal handlers */
57 static off_t filesize = 0;              /* content-length of the file */
58 static int chunked = 0;                 /* chunked transfer encoding */
59 #ifdef BB_FEATURE_WGET_STATUSBAR
60 static char *curfile;                   /* Name of current file being transferred. */
61 static struct timeval start;    /* Time a transfer started. */
62 static volatile unsigned long statbytes = 0; /* Number of bytes transferred so far. */
63 /* For progressmeter() -- number of seconds before xfer considered "stalled" */
64 static const int STALLTIME = 5;
65 #endif
66                 
67 static void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue)
68 {
69         if (output != stdout && do_continue==0) {
70                 fclose(output);
71                 unlink(fname_out);
72         }
73 }
74
75 #define close_delete_and_die(s...) { \
76         close_and_delete_outfile(output, fname_out, do_continue); \
77         error_msg_and_die(s); }
78
79
80 #ifdef BB_FEATURE_WGET_AUTHENTICATION
81 /*
82  *  Base64-encode character string
83  *  oops... isn't something similar in uuencode.c?
84  *  It would be better to use already existing code
85  */
86 char *base64enc(char *p, char *buf, int len) {
87
88         char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
89                     "0123456789+/";
90                 char *s = buf;
91
92         while(*p) {
93                                 if (s >= buf+len-4)
94                                         error_msg_and_die("buffer overflow");
95                 *(s++) = al[(*p >> 2) & 0x3F];
96                 *(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)];
97                 *s = *(s+1) = '=';
98                 *(s+2) = 0;
99                 if (! *(++p)) break;
100                 *(s++) = al[((*p << 2) & 0x3C) | ((*(p+1) >> 6) & 0x03)];
101                 if (! *(++p)) break;
102                 *(s++) = al[*(p++) & 0x3F];
103         }
104
105                 return buf;
106 }
107 #endif
108
109 int wget_main(int argc, char **argv)
110 {
111         int n, try=5, status;
112         int port;
113         char *proxy;
114         char *s, buf[512];
115         struct stat sbuf;
116
117         struct host_info server, target;
118
119         FILE *sfp = NULL;                       /* socket to web/ftp server                     */
120         FILE *dfp = NULL;                       /* socket to ftp server (data)          */
121         char *fname_out = NULL;         /* where to direct output (-O)          */
122         int do_continue = 0;            /* continue a prev transfer (-c)        */
123         long beg_range = 0L;            /*   range at which continue begins     */
124         int got_clen = 0;                       /* got content-length: from server      */
125         FILE *output;                           /* socket to web server                         */
126         int quiet_flag = FALSE;         /* Be verry, verry quiet...                     */
127
128         /*
129          * Crack command line.
130          */
131         while ((n = getopt(argc, argv, "cqO:")) != EOF) {
132                 switch (n) {
133                 case 'c':
134                         ++do_continue;
135                         break;
136                 case 'q':
137                         quiet_flag = TRUE;
138                         break;
139                 case 'O':
140                         /* can't set fname_out to NULL if outputting to stdout, because
141                          * this gets interpreted as the auto-gen output filename
142                          * case below  - tausq@debian.org
143                          */
144                         fname_out = optarg;
145                         break;
146                 default:
147                         show_usage();
148                 }
149         }
150
151         if (argc - optind != 1)
152                         show_usage();
153
154         parse_url(argv[optind], &target);
155         server.host = target.host;
156         server.port = target.port;
157
158         /*
159          * Use the proxy if necessary.
160          */
161         proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
162         if (proxy)
163                 parse_url(xstrdup(proxy), &server);
164         
165         /* Guess an output filename */
166         if (!fname_out) {
167                 fname_out = 
168 #ifdef BB_FEATURE_WGET_STATUSBAR
169                         curfile = 
170 #endif
171                         get_last_path_component(target.path);
172                 if (fname_out==NULL || strlen(fname_out)<1) {
173                         fname_out = 
174 #ifdef BB_FEATURE_WGET_STATUSBAR
175                                 curfile = 
176 #endif
177                                 "index.html";
178                 }
179 #ifdef BB_FEATURE_WGET_STATUSBAR
180         } else {
181                 curfile = get_last_path_component(fname_out);
182 #endif
183         }
184         if (do_continue && !fname_out)
185                 error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
186
187
188         /*
189          * Open the output file stream.
190          */
191         if (strcmp(fname_out, "-") == 0) {
192                 output = stdout;
193         } else {
194                 output = xfopen(fname_out, (do_continue ? "a" : "w"));
195         }
196
197         /*
198          * Determine where to start transfer.
199          */
200         if (do_continue) {
201                 if (fstat(fileno(output), &sbuf) < 0)
202                         perror_msg_and_die("fstat()");
203                 if (sbuf.st_size > 0)
204                         beg_range = sbuf.st_size;
205                 else
206                         do_continue = 0;
207         }
208
209         if (proxy || !target.is_ftp) {
210                 /*
211                  *  HTTP session
212                  */
213                 do {
214                         if (! --try)
215                                 close_delete_and_die("too many redirections");
216
217                         /*
218                          * Open socket to http server
219                          */
220                         if (sfp) fclose(sfp);
221                         sfp = open_socket(server.host, server.port);
222                         
223                         /*
224                          * Send HTTP request.
225                          */
226                         if (proxy) {
227                                 fprintf(sfp, "GET %stp://%s:%d/%s HTTP/1.1\r\n",
228                                         target.is_ftp ? "f" : "ht", target.host,
229                                         target.port, target.path);
230                         } else {
231                                 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
232                         }
233
234                         fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
235
236 #ifdef BB_FEATURE_WGET_AUTHENTICATION
237                         if (target.user) {
238                                 fprintf(sfp, "Authorization: Basic %s\r\n",
239                                         base64enc(target.user, buf, sizeof(buf)));
240                         }
241                         if (proxy && server.user) {
242                                 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
243                                         base64enc(server.user, buf, sizeof(buf)));
244                         }
245 #endif
246
247                         if (do_continue)
248                                 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
249                         fprintf(sfp,"Connection: close\r\n\r\n");
250
251                         /*
252                         * Retrieve HTTP response line and check for "200" status code.
253                         */
254 read_response:          if (fgets(buf, sizeof(buf), sfp) == NULL)
255                                 close_delete_and_die("no response from server");
256                                 
257                         for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
258                         ;
259                         for ( ; isspace(*s) ; ++s)
260                         ;
261                         switch (status = atoi(s)) {
262                                 case 0:
263                                 case 100:
264                                         while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
265                                         goto read_response;
266                                 case 200:
267                                         if (do_continue && output != stdout)
268                                                 output = freopen(fname_out, "w", output);
269                                         do_continue = 0;
270                                         break;
271                                 case 300:       /* redirection */
272                                 case 301:
273                                 case 302:
274                                 case 303:
275                                         break;
276                                 case 206:
277                                         if (do_continue)
278                                                 break;
279                                         /*FALLTHRU*/
280                                 default:
281                                         chomp(buf);
282                                         close_delete_and_die("server returned error %d: %s", atoi(s), buf);
283                         }
284                 
285                         /*
286                          * Retrieve HTTP headers.
287                          */
288                         while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
289                                 if (strcasecmp(buf, "content-length") == 0) {
290                                         filesize = atol(s);
291                                         got_clen = 1;
292                                         continue;
293                                 }
294                                 if (strcasecmp(buf, "transfer-encoding") == 0) {
295                                         if (strcasecmp(s, "chunked") == 0) {
296                                                 chunked = got_clen = 1;
297                                         } else {
298                                         close_delete_and_die("server wants to do %s transfer encoding", s);
299                                         }
300                                 }
301                                 if (strcasecmp(buf, "location") == 0) {
302                                         if (s[0] == '/')
303                                                 target.path = xstrdup(s+1);
304                                         else {
305                                                 parse_url(xstrdup(s), &target);
306                                                 if (!proxy) {
307                                                         server.host = target.host;
308                                                         server.port = target.port;
309                                                 }
310                                         }
311                                 }
312                         }
313                 } while(status >= 300);
314                 
315                 dfp = sfp;
316         }
317         else
318         {
319                 /*
320                  *  FTP session
321                  */
322                 if (! target.user)
323                         target.user = xstrdup("anonymous:busybox@");
324
325                 sfp = open_socket(server.host, server.port);
326                 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
327                         close_delete_and_die("%s", buf+4);
328
329                 /* 
330                  * Splitting username:password pair,
331                  * trying to log in
332                  */
333                 s = strchr(target.user, ':');
334                 if (s)
335                         *(s++) = '\0';
336                 switch(ftpcmd("USER ", target.user, sfp, buf)) {
337                         case 230:
338                                 break;
339                         case 331:
340                                 if (ftpcmd("PASS ", s, sfp, buf) == 230)
341                                         break;
342                                 /* FALLTHRU (failed login) */
343                         default:
344                                 close_delete_and_die("ftp login: %s", buf+4);
345                 }
346                 
347                 ftpcmd("CDUP", NULL, sfp, buf);
348                 ftpcmd("TYPE I", NULL, sfp, buf);
349                 
350                 /*
351                  * Querying file size
352                  */
353                 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
354                         filesize = atol(buf+4);
355                         got_clen = 1;
356                 }
357                 
358                 /*
359                  * Entering passive mode
360                  */
361                 if (ftpcmd("PASV", NULL, sfp, buf) !=  227)
362                         close_delete_and_die("PASV: %s", buf+4);
363                 s = strrchr(buf, ',');
364                 *s = 0;
365                 port = atoi(s+1);
366                 s = strrchr(buf, ',');
367                 port += atoi(s+1) * 256;
368                 dfp = open_socket(server.host, port);
369
370                 if (do_continue) {
371                         sprintf(buf, "REST %ld", beg_range);
372                         if (ftpcmd(buf, NULL, sfp, buf) != 350) {
373                                 if (output != stdout)
374                                         output = freopen(fname_out, "w", output);
375                                 do_continue = 0;
376                         } else
377                                 filesize -= beg_range;
378                 }
379                 
380                 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
381                         close_delete_and_die("RETR: %s", buf+4);
382
383         }
384
385
386         /*
387          * Retrieve file
388          */
389         if (chunked) {
390                 fgets(buf, sizeof(buf), dfp);
391                 filesize = strtol(buf, (char **) NULL, 16);
392         }
393 #ifdef BB_FEATURE_WGET_STATUSBAR
394         if (quiet_flag==FALSE)
395                 progressmeter(-1);
396 #endif
397         do {
398                 while ((filesize > 0 || !got_clen) && (n = fread(buf, 1, chunked ? (filesize > sizeof(buf) ? sizeof(buf) : filesize) : sizeof(buf), dfp)) > 0) {
399                 fwrite(buf, 1, n, output);
400 #ifdef BB_FEATURE_WGET_STATUSBAR
401                 statbytes+=n;
402 #endif
403                 if (got_clen)
404                         filesize -= n;
405         }
406
407                 if (chunked) {
408                         fgets(buf, sizeof(buf), dfp); /* This is a newline */
409                         fgets(buf, sizeof(buf), dfp);
410                         filesize = strtol(buf, (char **) NULL, 16);
411                         if (filesize==0) chunked = 0; /* all done! */
412                 }
413
414         if (n == 0 && ferror(dfp))
415                 perror_msg_and_die("network read error");
416         } while (chunked);
417 #ifdef BB_FEATURE_WGET_STATUSBAR
418         if (quiet_flag==FALSE)
419                 progressmeter(1);
420 #endif
421         if (!proxy && target.is_ftp) {
422                 fclose(dfp);
423                 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
424                         error_msg_and_die("ftp error: %s", buf+4);
425                 ftpcmd("QUIT", NULL, sfp, buf);
426         }
427         exit(EXIT_SUCCESS);
428 }
429
430
431 void parse_url(char *url, struct host_info *h)
432 {
433         char *cp, *sp, *up;
434
435         if (strncmp(url, "http://", 7) == 0) {
436                 h->port = 80;
437                 h->host = url + 7;
438                 h->is_ftp = 0;
439         } else if (strncmp(url, "ftp://", 6) == 0) {
440                 h->port = 21;
441                 h->host = url + 6;
442                 h->is_ftp = 1;
443         } else
444                 error_msg_and_die("not an http or ftp url: %s", url);
445
446         sp = strchr(h->host, '/');
447         if (sp != NULL) {
448                 *sp++ = '\0';
449                 h->path = sp;
450         } else
451                 h->path = "";
452
453         up = strrchr(h->host, '@');
454         if (up != NULL) {
455                 h->user = h->host;
456                 *up++ = '\0';
457                 h->host = up;
458         } else
459                 h->user = NULL;
460
461         cp = strchr(h->host, ':');
462         if (cp != NULL) {
463                 *cp++ = '\0';
464                 h->port = atoi(cp);
465         }
466
467 }
468
469
470 FILE *open_socket(char *host, int port)
471 {
472         struct sockaddr_in s_in;
473         struct hostent *hp;
474         int fd;
475         FILE *fp;
476
477         memset(&s_in, 0, sizeof(s_in));
478         s_in.sin_family = AF_INET;
479         if ((hp = (struct hostent *) gethostbyname(host)) == NULL)
480                 error_msg_and_die("cannot resolve %s", host);
481         memcpy(&s_in.sin_addr, hp->h_addr_list[0], hp->h_length);
482         s_in.sin_port = htons(port);
483
484         /*
485          * Get the server onto a stdio stream.
486          */
487         if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
488                 perror_msg_and_die("socket()");
489         if (connect(fd, (struct sockaddr *) &s_in, sizeof(s_in)) < 0)
490                 perror_msg_and_die("connect(%s)", host);
491         if ((fp = fdopen(fd, "r+")) == NULL)
492                 perror_msg_and_die("fdopen()");
493
494         return fp;
495 }
496
497
498 char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
499 {
500         char *s, *hdrval;
501         int c;
502
503         *istrunc = 0;
504
505         /* retrieve header line */
506         if (fgets(buf, bufsiz, fp) == NULL)
507                 return NULL;
508
509         /* see if we are at the end of the headers */
510         for (s = buf ; *s == '\r' ; ++s)
511                 ;
512         if (s[0] == '\n')
513                 return NULL;
514
515         /* convert the header name to lower case */
516         for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
517                 *s = tolower(*s);
518
519         /* verify we are at the end of the header name */
520         if (*s != ':')
521                 error_msg_and_die("bad header line: %s", buf);
522
523         /* locate the start of the header value */
524         for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
525                 ;
526         hdrval = s;
527
528         /* locate the end of header */
529         while (*s != '\0' && *s != '\r' && *s != '\n')
530                 ++s;
531
532         /* end of header found */
533         if (*s != '\0') {
534                 *s = '\0';
535                 return hdrval;
536         }
537
538         /* Rats!  The buffer isn't big enough to hold the entire header value. */
539         while (c = getc(fp), c != EOF && c != '\n')
540                 ;
541         *istrunc = 1;
542         return hdrval;
543 }
544
545 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
546 {
547         char *p;
548         
549         if (s1) {
550                 if (!s2) s2="";
551                 fprintf(fp, "%s%s\n", s1, s2);
552                 fflush(fp);
553         }
554         
555         do {
556                 p = fgets(buf, 510, fp);
557                 if (!p)
558                         perror_msg_and_die("fgets()");
559         } while (! isdigit(buf[0]) || buf[3] != ' ');
560         
561         return atoi(buf);
562 }
563
564 #ifdef BB_FEATURE_WGET_STATUSBAR
565 /* Stuff below is from BSD rcp util.c, as added to openshh. 
566  * Original copyright notice is retained at the end of this file.
567  * 
568  */ 
569
570
571 static int
572 getttywidth(void)
573 {
574         struct winsize winsize;
575
576         if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
577                 return (winsize.ws_col ? winsize.ws_col : 80);
578         else
579                 return (80);
580 }
581
582 static void
583 updateprogressmeter(int ignore)
584 {
585         int save_errno = errno;
586
587         progressmeter(0);
588         errno = save_errno;
589 }
590
591 static void
592 alarmtimer(int wait)
593 {
594         struct itimerval itv;
595
596         itv.it_value.tv_sec = wait;
597         itv.it_value.tv_usec = 0;
598         itv.it_interval = itv.it_value;
599         setitimer(ITIMER_REAL, &itv, NULL);
600 }
601
602
603 static void
604 progressmeter(int flag)
605 {
606         static const char prefixes[] = " KMGTP";
607         static struct timeval lastupdate;
608         static off_t lastsize, totalsize;
609         struct timeval now, td, wait;
610         off_t cursize, abbrevsize;
611         double elapsed;
612         int ratio, barlength, i, remaining;
613         char buf[256];
614
615         if (flag == -1) {
616                 (void) gettimeofday(&start, (struct timezone *) 0);
617                 lastupdate = start;
618                 lastsize = 0;
619                 totalsize = filesize; /* as filesize changes.. */
620         }
621
622         (void) gettimeofday(&now, (struct timezone *) 0);
623         cursize = statbytes;
624         if (totalsize != 0 && !chunked) {
625                 ratio = 100.0 * cursize / totalsize;
626                 ratio = MAX(ratio, 0);
627                 ratio = MIN(ratio, 100);
628         } else
629                 ratio = 100;
630
631         snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
632
633         barlength = getttywidth() - 51;
634         if (barlength > 0) {
635                 i = barlength * ratio / 100;
636                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
637                          "|%.*s%*s|", i,
638                          "*****************************************************************************"
639                          "*****************************************************************************",
640                          barlength - i, "");
641         }
642         i = 0;
643         abbrevsize = cursize;
644         while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
645                 i++;
646                 abbrevsize >>= 10;
647         }
648         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
649              (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
650                  'B');
651
652         timersub(&now, &lastupdate, &wait);
653         if (cursize > lastsize) {
654                 lastupdate = now;
655                 lastsize = cursize;
656                 if (wait.tv_sec >= STALLTIME) {
657                         start.tv_sec += wait.tv_sec;
658                         start.tv_usec += wait.tv_usec;
659                 }
660                 wait.tv_sec = 0;
661         }
662         timersub(&now, &start, &td);
663         elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
664
665         if (wait.tv_sec >= STALLTIME) {
666                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
667                          " - stalled -");
668         } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
669                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
670                          "   --:-- ETA");
671         } else {
672                 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
673                 i = remaining / 3600;
674                 if (i)
675                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
676                                  "%2d:", i);
677                 else
678                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
679                                  "   ");
680                 i = remaining % 3600;
681                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
682                          "%02d:%02d ETA", i / 60, i % 60);
683         }
684         write(fileno(stderr), buf, strlen(buf));
685
686         if (flag == -1) {
687                 struct sigaction sa;
688                 sa.sa_handler = updateprogressmeter;
689                 sigemptyset(&sa.sa_mask);
690                 sa.sa_flags = SA_RESTART;
691                 sigaction(SIGALRM, &sa, NULL);
692                 alarmtimer(1);
693         } else if (flag == 1) {
694                 alarmtimer(0);
695                 statbytes = 0;
696                 putc('\n', stderr);
697         }
698 }
699 #endif
700
701 /* Original copyright notice which applies to the BB_FEATURE_WGET_STATUSBAR stuff,
702  * much of which was blatently stolen from openssh.  */
703  
704 /*-
705  * Copyright (c) 1992, 1993
706  *      The Regents of the University of California.  All rights reserved.
707  *
708  * Redistribution and use in source and binary forms, with or without
709  * modification, are permitted provided that the following conditions
710  * are met:
711  * 1. Redistributions of source code must retain the above copyright
712  *    notice, this list of conditions and the following disclaimer.
713  * 2. Redistributions in binary form must reproduce the above copyright
714  *    notice, this list of conditions and the following disclaimer in the
715  *    documentation and/or other materials provided with the distribution.
716  *
717  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change 
718  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> 
719  *
720  * 4. Neither the name of the University nor the names of its contributors
721  *    may be used to endorse or promote products derived from this software
722  *    without specific prior written permission.
723  *
724  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
725  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
726  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
727  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
728  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
729  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
730  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
731  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
732  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
733  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
734  * SUCH DAMAGE.
735  *
736  *      $Id: wget.c,v 1.36 2001/04/17 18:13:16 markw Exp $
737  */
738
739
740
741 /*
742 Local Variables:
743 c-file-style: "linux"
744 c-basic-offset: 4
745 tab-width: 4
746 End:
747 */
748
749
750