ffuff/pkg/ffuf/progress.go
Joona Hoikkala 0ce941326b
Throttle rate of requests per second (#287)
* Add the functionality to perform req/sec limiting (for humans)

* Add documentation
2020-08-30 13:51:41 +03:00

16 lines
179 B
Go

package ffuf
import (
"time"
)
type Progress struct {
StartedAt time.Time
ReqCount int
ReqTotal int
ReqSec int64
QueuePos int
QueueTotal int
ErrorCount int
}