]> sjero.net Git - wget/blob - src/main.c
65d5f6ac1eae9d2a88c78d40af0905bfec0b743a
[wget] / src / main.c
1 /* Command line parsing.
2    Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
3
4 This file is part of Wget.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <ctype.h>
25 #ifdef HAVE_UNISTD_H
26 # include <unistd.h>
27 #endif /* HAVE_UNISTD_H */
28 #include <sys/types.h>
29 #ifdef HAVE_STRING_H
30 # include <string.h>
31 #else
32 # include <strings.h>
33 #endif /* HAVE_STRING_H */
34 #ifdef HAVE_SIGNAL_H
35 # include <signal.h>
36 #endif
37 #ifdef HAVE_NLS
38 #ifdef HAVE_LOCALE_H
39 # include <locale.h>
40 #endif /* HAVE_LOCALE_H */
41 #endif /* HAVE_NLS */
42
43 #define OPTIONS_DEFINED_HERE    /* for options.h */
44
45 #include "wget.h"
46 #include "utils.h"
47 #include "getopt.h"
48 #include "init.h"
49 #include "retr.h"
50 #include "recur.h"
51 #include "host.h"
52
53 #ifndef PATH_SEPARATOR
54 # define PATH_SEPARATOR '/'
55 #endif
56
57 extern char *version_string;
58
59 #ifndef errno
60 extern int errno;
61 #endif
62
63 struct options opt;
64
65 /* From log.c.  */
66 void log_init PARAMS ((const char *, int));
67 void log_close PARAMS ((void));
68 void redirect_output PARAMS ((const char *));
69
70 static RETSIGTYPE redirect_output_signal PARAMS ((int));
71
72 const char *exec_name;
73 \f
74 /* Initialize I18N.  The initialization amounts to invoking
75    setlocale(), bindtextdomain() and textdomain().
76    Does nothing if NLS is disabled or missing.  */
77 static void
78 i18n_initialize (void)
79 {
80   /* If HAVE_NLS is defined, assume the existence of the three
81      functions invoked here.  */
82 #ifdef HAVE_NLS
83   /* Set the current locale.  */
84   /* Here we use LC_MESSAGES instead of LC_ALL, for two reasons.
85      First, message catalogs are all of I18N Wget uses anyway.
86      Second, setting LC_ALL has a dangerous potential of messing
87      things up.  For example, when in a foreign locale, Solaris
88      strptime() fails to handle international dates correctly, which
89      makes http_atotm() malfunction.  */
90   setlocale (LC_MESSAGES, "");
91   /* Set the text message domain.  */
92   bindtextdomain ("wget", LOCALEDIR);
93   textdomain ("wget");
94 #endif /* HAVE_NLS */
95 }
96 \f
97 /* Print the usage message.  */
98 static void
99 print_usage (void)
100 {
101   printf (_("Usage: %s [OPTION]... [URL]...\n"), exec_name);
102 }
103
104 /* Print the help message, describing all the available options.  If
105    you add an option, be sure to update this list.  */
106 static void
107 print_help (void)
108 {
109   printf (_("GNU Wget %s, a non-interactive network retriever.\n"),
110           version_string);
111   print_usage ();
112   /* Had to split this in parts, so the #@@#%# Ultrix compiler and cpp
113      don't bitch.  Also, it makes translation much easier.  */
114   printf ("%s%s%s%s%s%s%s%s%s%s", _("\
115 \n\
116 Mandatory arguments to long options are mandatory for short options too.\n\
117 \n"), _("\
118 Startup:\n\
119   -V,  --version           display the version of Wget and exit.\n\
120   -h,  --help              print this help.\n\
121   -b,  --background        go to background after startup.\n\
122   -e,  --execute=COMMAND   execute a `.wgetrc\' command.\n\
123 \n"), _("\
124 Logging and input file:\n\
125   -o,  --output-file=FILE     log messages to FILE.\n\
126   -a,  --append-output=FILE   append messages to FILE.\n\
127   -d,  --debug                print debug output.\n\
128   -q,  --quiet                quiet (no output).\n\
129   -v,  --verbose              be verbose (this is the default).\n\
130   -nv, --non-verbose          turn off verboseness, without being quiet.\n\
131   -i,  --input-file=FILE      read URL-s from file.\n\
132   -F,  --force-html           treat input file as HTML.\n\
133 \n"), _("\
134 Download:\n\
135   -t,  --tries=NUMBER           set number of retries to NUMBER (0 unlimits).\n\
136   -O   --output-document=FILE   write documents to FILE.\n\
137   -nc, --no-clobber             don\'t clobber existing files.\n\
138   -c,  --continue               restart getting an existing file.\n\
139        --dot-style=STYLE        set retrieval display style.\n\
140   -N,  --timestamping           don\'t retrieve files if older than local.\n\
141   -S,  --server-response        print server response.\n\
142        --spider                 don\'t download anything.\n\
143   -T,  --timeout=SECONDS        set the read timeout to SECONDS.\n\
144   -w,  --wait=SECONDS           wait SECONDS between retrievals.\n\
145   -Y,  --proxy=on/off           turn proxy on or off.\n\
146   -Q,  --quota=NUMBER           set retrieval quota to NUMBER.\n\
147 \n"),  _("\
148 Directories:\n\
149   -nd  --no-directories            don\'t create directories.\n\
150   -x,  --force-directories         force creation of directories.\n\
151   -nH, --no-host-directories       don\'t create host directories.\n\
152   -P,  --directory-prefix=PREFIX   save files to PREFIX/...\n\
153        --cut-dirs=NUMBER           ignore NUMBER remote directory components.\n\
154 \n"), _("\
155 HTTP options:\n\
156        --http-user=USER      set http user to USER.\n\
157        --http-passwd=PASS    set http password to PASS.\n\
158   -C,  --cache=on/off        (dis)allow server-cached data (normally allowed).\n\
159        --ignore-length       ignore `Content-Length\' header field.\n\
160        --header=STRING       insert STRING among the headers.\n\
161        --proxy-user=USER     set USER as proxy username.\n\
162        --proxy-passwd=PASS   set PASS as proxy password.\n\
163   -s,  --save-headers        save the HTTP headers to file.\n\
164   -U,  --user-agent=AGENT    identify as AGENT instead of Wget/VERSION.\n\
165 \n"), _("\
166 FTP options:\n\
167        --retr-symlinks   retrieve FTP symbolic links.\n\
168   -g,  --glob=on/off     turn file name globbing on or off.\n\
169        --passive-ftp     use the \"passive\" transfer mode.\n\
170 \n"), _("\
171 Recursive retrieval:\n\
172   -r,  --recursive             recursive web-suck -- use with care!.\n\
173   -l,  --level=NUMBER          maximum recursion depth (0 to unlimit).\n\
174        --delete-after          delete downloaded files.\n\
175   -k,  --convert-links         convert non-relative links to relative.\n\
176   -K,  --backup-converted      before converting file X, back up as X.orig.\n\
177   -m,  --mirror                turn on options suitable for mirroring.\n\
178   -nr, --dont-remove-listing   don\'t remove `.listing\' files.\n\
179 \n"), _("\
180 Recursive accept/reject:\n\
181   -A,  --accept=LIST                list of accepted extensions.\n\
182   -R,  --reject=LIST                list of rejected extensions.\n\
183   -D,  --domains=LIST               list of accepted domains.\n\
184        --exclude-domains=LIST       comma-separated list of rejected domains.\n\
185   -L,  --relative                   follow relative links only.\n\
186        --follow-ftp                 follow FTP links from HTML documents.\n\
187   -H,  --span-hosts                 go to foreign hosts when recursive.\n\
188   -I,  --include-directories=LIST   list of allowed directories.\n\
189   -X,  --exclude-directories=LIST   list of excluded directories.\n\
190   -nh, --no-host-lookup             don\'t DNS-lookup hosts.\n\
191   -np, --no-parent                  don\'t ascend to the parent directory.\n\
192 \n"), _("Mail bug reports and suggestions to <bug-wget@gnu.org>.\n"));
193 }
194 \f
195 int
196 main (int argc, char *const *argv)
197 {
198   char **url, **t;
199   int i, c, nurl, status, append_to_log;
200
201   static struct option long_options[] =
202   {
203     { "background", no_argument, NULL, 'b' },
204     { "continue", no_argument, NULL, 'c' },
205     { "convert-links", no_argument, NULL, 'k' },
206     { "backup-converted", no_argument, NULL, 'K' },
207     { "debug", no_argument, NULL, 'd' },
208     { "dont-remove-listing", no_argument, NULL, 21 },
209     { "email-address", no_argument, NULL, 'E' }, /* undocumented (debug) */
210     { "follow-ftp", no_argument, NULL, 14 },
211     { "force-directories", no_argument, NULL, 'x' },
212     { "force-hier", no_argument, NULL, 'x' }, /* obsolete */
213     { "force-html", no_argument, NULL, 'F'},
214     { "help", no_argument, NULL, 'h' },
215     { "ignore-length", no_argument, NULL, 10 },
216     { "mirror", no_argument, NULL, 'm' },
217     { "no-clobber", no_argument, NULL, 13 },
218     { "no-directories", no_argument, NULL, 19 },
219     { "no-host-directories", no_argument, NULL, 20 },
220     { "no-host-lookup", no_argument, NULL, 22 },
221     { "no-parent", no_argument, NULL, 5 },
222     { "non-verbose", no_argument, NULL, 18 },
223     { "passive-ftp", no_argument, NULL, 11 },
224     { "quiet", no_argument, NULL, 'q' },
225     { "recursive", no_argument, NULL, 'r' },
226     { "relative", no_argument, NULL, 'L' },
227     { "retr-symlinks", no_argument, NULL, 9 },
228     { "save-headers", no_argument, NULL, 's' },
229     { "server-response", no_argument, NULL, 'S' },
230     { "span-hosts", no_argument, NULL, 'H' },
231     { "spider", no_argument, NULL, 4 },
232     { "timestamping", no_argument, NULL, 'N' },
233     { "verbose", no_argument, NULL, 'v' },
234     { "version", no_argument, NULL, 'V' },
235
236     { "accept", required_argument, NULL, 'A' },
237     { "append-output", required_argument, NULL, 'a' },
238     { "backups", required_argument, NULL, 23 }, /* undocumented */
239     { "base", required_argument, NULL, 'B' },
240     { "cache", required_argument, NULL, 'C' },
241     { "cut-dirs", required_argument, NULL, 17 },
242     { "delete-after", no_argument, NULL, 8 },
243     { "directory-prefix", required_argument, NULL, 'P' },
244     { "domains", required_argument, NULL, 'D' },
245     { "dot-style", required_argument, NULL, 6 },
246     { "execute", required_argument, NULL, 'e' },
247     { "exclude-directories", required_argument, NULL, 'X' },
248     { "exclude-domains", required_argument, NULL, 12 },
249     { "glob", required_argument, NULL, 'g' },
250     { "header", required_argument, NULL, 3 },
251     { "htmlify", required_argument, NULL, 7 },
252     { "http-passwd", required_argument, NULL, 2 },
253     { "http-user", required_argument, NULL, 1 },
254     { "include-directories", required_argument, NULL, 'I' },
255     { "input-file", required_argument, NULL, 'i' },
256     { "level", required_argument, NULL, 'l' },
257     { "no", required_argument, NULL, 'n' },
258     { "output-document", required_argument, NULL, 'O' },
259     { "output-file", required_argument, NULL, 'o' },
260     { "proxy", required_argument, NULL, 'Y' },
261     { "proxy-passwd", required_argument, NULL, 16 },
262     { "proxy-user", required_argument, NULL, 15 },
263     { "quota", required_argument, NULL, 'Q' },
264     { "reject", required_argument, NULL, 'R' },
265     { "timeout", required_argument, NULL, 'T' },
266     { "tries", required_argument, NULL, 't' },
267     { "user-agent", required_argument, NULL, 'U' },
268     { "use-proxy", required_argument, NULL, 'Y' },
269     { "wait", required_argument, NULL, 'w' },
270     { 0, 0, 0, 0 }
271   };
272
273   i18n_initialize ();
274
275   append_to_log = 0;
276
277   /* Construct the name of the executable, without the directory part.  */
278   exec_name = strrchr (argv[0], PATH_SEPARATOR);
279   if (!exec_name)
280     exec_name = argv[0];
281   else
282     ++exec_name;
283
284 #ifdef WINDOWS
285   windows_main_junk (&argc, (char **) argv, (char **) &exec_name);
286 #endif
287
288   initialize ();
289
290   while ((c = getopt_long (argc, argv, "\
291 hVqvdkKsxmNWrHSLcFbEY:g:T:U:O:l:n:i:o:a:t:D:A:R:P:B:e:Q:X:I:w:",
292                            long_options, (int *)0)) != EOF)
293     {
294       switch (c)
295         {
296           /* Options without arguments: */
297         case 4:
298           setval ("spider", "on");
299           break;
300         case 5:
301           setval ("noparent", "on");
302           break;
303         case 8:
304           setval ("deleteafter", "on");
305           break;
306         case 9:
307           setval ("retrsymlinks", "on");
308           break;
309         case 10:
310           setval ("ignorelength", "on");
311           break;
312         case 11:
313           setval ("passiveftp", "on");
314           break;
315         case 13:
316           setval ("noclobber", "on");
317           break;
318         case 14:
319           setval ("followftp", "on");
320           break;
321         case 17:
322           setval ("cutdirs", optarg);
323           break;
324         case 18:
325           setval ("verbose", "off");
326           break;
327         case 19:
328           setval ("dirstruct", "off");
329           break;
330         case 20:
331           setval ("addhostdir", "off");
332           break;
333         case 21:
334           setval ("removelisting", "off");
335           break;
336         case 22:
337           setval ("simplehostcheck", "on");
338           break;
339         case 'b':
340           setval ("background", "on");
341           break;
342         case 'c':
343           setval ("continue", "on");
344           break;
345         case 'd':
346 #ifdef DEBUG
347           setval ("debug", "on");
348 #else  /* not DEBUG */
349           fprintf (stderr, _("%s: debug support not compiled in.\n"),
350                    exec_name);
351 #endif /* not DEBUG */
352           break;
353         case 'E':
354           /* For debugging purposes.  */
355           printf ("%s\n", ftp_getaddress ());
356           exit (0);
357           break;
358         case 'F':
359           setval ("forcehtml", "on");
360           break;
361         case 'H':
362           setval ("spanhosts", "on");
363           break;
364         case 'h':
365           print_help ();
366 #ifdef WINDOWS
367           ws_help (exec_name);
368 #endif
369           exit (0);
370           break;
371         case 'k':
372           setval ("convertlinks", "on");
373           break;
374         case 'K':
375           setval ("backupconverted", "on");
376           break;
377         case 'L':
378           setval ("relativeonly", "on");
379           break;
380         case 'm':
381           setval ("mirror", "on");
382           break;
383         case 'N':
384           setval ("timestamping", "on");
385           break;
386         case 'S':
387           setval ("serverresponse", "on");
388           break;
389         case 's':
390           setval ("saveheaders", "on");
391           break;
392         case 'q':
393           setval ("quiet", "on");
394           break;
395         case 'r':
396           setval ("recursive", "on");
397           break;
398         case 'V':
399           printf ("GNU Wget %s\n\n", version_string);
400           printf ("%s", _("\
401 Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.\n\
402 This program is distributed in the hope that it will be useful,\n\
403 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
404 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
405 GNU General Public License for more details.\n"));
406           printf (_("\nWritten by Hrvoje Niksic <hniksic@srce.hr>.\n"));
407           exit (0);
408           break;
409         case 'v':
410           setval ("verbose", "on");
411           break;
412         case 'x':
413           setval ("dirstruct", "on");
414           break;
415
416           /* Options accepting an argument: */
417         case 1:
418           setval ("httpuser", optarg);
419           break;
420         case 2:
421           setval ("httppasswd", optarg);
422           break;
423         case 3:
424           setval ("header", optarg);
425           break;
426         case 6:
427           setval ("dotstyle", optarg);
428           break;
429         case 7:
430           setval ("htmlify", optarg);
431           break;
432         case 12:
433           setval ("excludedomains", optarg);
434           break;
435         case 15:
436           setval ("proxyuser", optarg);
437           break;
438         case 16:
439           setval ("proxypasswd", optarg);
440           break;
441         case 23:
442           setval ("backups", optarg);
443           break;
444         case 'A':
445           setval ("accept", optarg);
446           break;
447         case 'a':
448           setval ("logfile", optarg);
449           append_to_log = 1;
450           break;
451         case 'B':
452           setval ("base", optarg);
453           break;
454         case 'C':
455           setval ("cache", optarg);
456           break;
457         case 'D':
458           setval ("domains", optarg);
459           break;
460         case 'e':
461           {
462             char *com, *val;
463             if (parse_line (optarg, &com, &val))
464               {
465                 if (!setval (com, val))
466                   exit (1);
467               }
468             else
469               {
470                 fprintf (stderr, _("%s: %s: invalid command\n"), exec_name,
471                          optarg);
472                 exit (1);
473               }
474             free (com);
475             free (val);
476           }
477           break;
478         case 'g':
479           setval ("glob", optarg);
480           break;
481         case 'I':
482           setval ("includedirectories", optarg);
483           break;
484         case 'i':
485           setval ("input", optarg);
486           break;
487         case 'l':
488           setval ("reclevel", optarg);
489           break;
490         case 'n':
491           {
492             /* #### The n? options are utter crock!  */
493             char *p;
494
495             for (p = optarg; *p; p++)
496               switch (*p)
497                 {
498                 case 'v':
499                   setval ("verbose", "off");
500                   break;
501                 case 'h':
502                   setval ("simplehostcheck", "on");
503                   break;
504                 case 'H':
505                   setval ("addhostdir", "off");
506                   break;
507                 case 'd':
508                   setval ("dirstruct", "off");
509                   break;
510                 case 'c':
511                   setval ("noclobber", "on");
512                   break;
513                 case 'r':
514                   setval ("removelisting", "off");
515                   break;
516                 case 'p':
517                   setval ("noparent", "on");
518                   break;
519                 default:
520                   printf (_("%s: illegal option -- `-n%c'\n"), exec_name, *p);
521                   print_usage ();
522                   printf ("\n");
523                   printf (_("Try `%s --help\' for more options.\n"), exec_name);
524                   exit (1);
525                 }
526             break;
527           }
528         case 'O':
529           setval ("outputdocument", optarg);
530           break;
531         case 'o':
532           setval ("logfile", optarg);
533           break;
534         case 'P':
535           setval ("dirprefix", optarg);
536           break;
537         case 'Q':
538           setval ("quota", optarg);
539           break;
540         case 'R':
541           setval ("reject", optarg);
542           break;
543         case 'T':
544           setval ("timeout", optarg);
545           break;
546         case 't':
547           setval ("tries", optarg);
548           break;
549         case 'U':
550           setval ("useragent", optarg);
551           break;
552         case 'w':
553           setval ("wait", optarg);
554           break;
555         case 'X':
556           setval ("excludedirectories", optarg);
557           break;
558         case 'Y':
559           setval ("useproxy", optarg);
560           break;
561
562         case '?':
563           print_usage ();
564           printf ("\n");
565           printf (_("Try `%s --help' for more options.\n"), exec_name);
566           exit (0);
567           break;
568         }
569     }
570   if (opt.verbose == -1)
571     opt.verbose = !opt.quiet;
572
573   /* Sanity checks.  */
574   if (opt.verbose && opt.quiet)
575     {
576       printf (_("Can't be verbose and quiet at the same time.\n"));
577       print_usage ();
578       exit (1);
579     }
580   if (opt.timestamping && opt.noclobber)
581     {
582       printf (_("\
583 Can't timestamp and not clobber old files at the same time.\n"));
584       print_usage ();
585       exit (1);
586     }
587   nurl = argc - optind;
588   if (!nurl && !opt.input_filename)
589     {
590       /* No URL specified.  */
591       printf (_("%s: missing URL\n"), exec_name);
592       print_usage ();
593       printf ("\n");
594       /* #### Something nicer should be printed here -- similar to the
595          pre-1.5 `--help' page.  */
596       printf (_("Try `%s --help' for more options.\n"), exec_name);
597       exit (1);
598     }
599
600   if (opt.background)
601     fork_to_background ();
602
603   /* Allocate basic pointer.  */
604   url = ALLOCA_ARRAY (char *, nurl + 1);
605   /* Fill in the arguments.  */
606   for (i = 0; i < nurl; i++, optind++)
607     {
608       char *irix4_cc_needs_this;
609       STRDUP_ALLOCA (irix4_cc_needs_this, argv[optind]);
610       url[i] = irix4_cc_needs_this;
611     }
612   url[i] = NULL;
613
614   /* Change the title of console window on Windows.  #### I think this
615      statement should belong to retrieve_url().  --hniksic.  */
616 #ifdef WINDOWS
617   ws_changetitle (*url, nurl);
618 #endif
619
620   /* Initialize logging.  */
621   log_init (opt.lfilename, append_to_log);
622
623   DEBUGP (("DEBUG output created by Wget %s on %s.\n\n", version_string,
624            OS_TYPE));
625   /* Open the output filename if necessary.  */
626   if (opt.output_document)
627     {
628       if (HYPHENP (opt.output_document))
629         opt.dfp = stdout;
630       else
631         {
632           opt.dfp = fopen (opt.output_document, "wb");
633           if (opt.dfp == NULL)
634             {
635               perror (opt.output_document);
636               exit (1);
637             }
638         }
639     }
640
641 #ifdef WINDOWS
642   ws_startup ();
643 #endif
644
645   /* Setup the signal handler to redirect output when hangup is
646      received.  */
647 #ifdef HAVE_SIGNAL
648   if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
649     signal(SIGHUP, redirect_output_signal);
650   /* ...and do the same for SIGUSR1.  */
651   signal (SIGUSR1, redirect_output_signal);
652   /* Writing to a closed socket normally signals SIGPIPE, and the
653      process exits.  What we want is to ignore SIGPIPE and just check
654      for the return value of write().  */
655   signal (SIGPIPE, SIG_IGN);
656 #endif /* HAVE_SIGNAL */
657
658   status = RETROK;              /* initialize it, just-in-case */
659   recursive_reset ();
660   /* Retrieve the URLs from argument list.  */
661   for (t = url; *t; t++)
662     {
663       char *filename, *new_file;
664       int dt;
665
666       status = retrieve_url (*t, &filename, &new_file, NULL, &dt);
667       if (opt.recursive && status == RETROK && (dt & TEXTHTML))
668         status = recursive_retrieve (filename, new_file ? new_file : *t);
669       FREE_MAYBE (new_file);
670       FREE_MAYBE (filename);
671     }
672
673   /* And then from the input file, if any.  */
674   if (opt.input_filename)
675     {
676       int count;
677       status = retrieve_from_file (opt.input_filename, opt.force_html, &count);
678       if (!count)
679         logprintf (LOG_NOTQUIET, _("No URLs found in %s.\n"),
680                    opt.input_filename);
681     }
682   /* Print the downloaded sum.  */
683   if (opt.recursive
684       || nurl > 1
685       || (opt.input_filename && opt.downloaded != 0))
686     {
687       logprintf (LOG_NOTQUIET,
688                  _("\nFINISHED --%s--\nDownloaded: %s bytes in %d files\n"),
689                  time_str (NULL), legible (opt.downloaded), opt.numurls);
690       /* Print quota warning, if exceeded.  */
691       if (opt.quota && opt.downloaded > opt.quota)
692         logprintf (LOG_NOTQUIET,
693                    _("Download quota (%s bytes) EXCEEDED!\n"),
694                    legible (opt.quota));
695     }
696   if (opt.convert_links)
697     {
698       convert_all_links ();
699     }
700   log_close ();
701   cleanup ();
702   if (status == RETROK)
703     return 0;
704   else
705     return 1;
706 }
707 \f
708 /* Hangup signal handler.  When wget receives SIGHUP or SIGUSR1, it
709    will proceed operation as usual, trying to write into a log file.
710    If that is impossible, the output will be turned off.  */
711
712 #ifdef HAVE_SIGNAL
713 static RETSIGTYPE
714 redirect_output_signal (int sig)
715 {
716   char tmp[100];
717   signal (sig, redirect_output_signal);
718   /* Please note that the double `%' in `%%s' is intentional, because
719      redirect_output passes tmp through printf.  */
720   sprintf (tmp, _("%s received, redirecting output to `%%s'.\n"),
721            (sig == SIGHUP ? "SIGHUP" :
722             (sig == SIGUSR1 ? "SIGUSR1" :
723              "WTF?!")));
724   redirect_output (tmp);
725 }
726 #endif /* HAVE_SIGNAL */