]> sjero.net Git - wget/blobdiff - src/recur.h
[svn] Retired the `boolean' type. Renamed FREE_MAYBE to xfree_null and moved the
[wget] / src / recur.h
index 69d6ed985e9c993390e3398af12fd9addb6d7247..389ab00d66c55d9e745046d73a5431a8e33af2f1 100644 (file)
@@ -30,6 +30,14 @@ so, delete this exception statement from your version.  */
 #ifndef RECUR_H
 #define RECUR_H
 
+/* For most options, 0 means no limits, but with -p in the picture,
+   that causes a problem on the maximum recursion depth variable.  To
+   retain backwards compatibility we allow users to consider "0" to be
+   synonymous with "inf" for -l, but internally infinite recursion is
+   specified by -1 and 0 means to only retrieve the requisites of a
+   single document. */
+#define INFINITE_RECURSION -1
+
 struct urlpos;
 
 void recursive_cleanup PARAMS ((void));