~ubuntu-branches/ubuntu/precise/wget/precise-proposed

« back to all changes in this revision

Viewing changes to src/recur.h

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2005-06-26 16:46:25 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050626164625-jjcde8hyztx7xq7o
Tags: 1.10-2
* wget-fix_error--save-headers patch from upstream
  (closes: Bug#314728)
* don't pattern-match server redirects patch from upstream
  (closes: Bug#163243)
* correct de.po typos
  (closes: Bug#313883)
* wget-E_html_behind_file_counting fix problem with adding the
  numbers after the html extension
* updated Standards-Version: to 3.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#ifndef RECUR_H
31
31
#define RECUR_H
32
32
 
 
33
/* For most options, 0 means no limits, but with -p in the picture,
 
34
   that causes a problem on the maximum recursion depth variable.  To
 
35
   retain backwards compatibility we allow users to consider "0" to be
 
36
   synonymous with "inf" for -l, but internally infinite recursion is
 
37
   specified by -1 and 0 means to only retrieve the requisites of a
 
38
   single document. */
 
39
#define INFINITE_RECURSION -1
 
40
 
33
41
struct urlpos;
34
42
 
35
43
void recursive_cleanup PARAMS ((void));