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