summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-05-27 12:09:31 -0400
committerdemo <demo@antix1>2026-05-27 12:09:31 -0400
commitebb7f3eb80c86ae110aaaaf73381e677c33699c1 (patch)
tree413918a80633d258ceb44b51471f84684ec36aa0 /main.go
parent7852eae1e9653d9a62ff3c82b8fac2954ee1944f (diff)
wip: prototype a max-depth limitation
It's just bolted on with a constant right now though.
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index bd30a4c..5673441 100644
--- a/main.go
+++ b/main.go
@@ -41,7 +41,7 @@ func main() {
}
getLeakProfile(func() {
- classic(*startURL, *maxConcurrency, *maxURLs)
+ classic(*startURL, *maxConcurrency, *maxURLs, 1)
})
}