mirror of
https://github.com/openziti/zrok.git
synced 2025-03-02 09:01:54 +01:00
15 lines
246 B
Go
15 lines
246 B
Go
|
package canary
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type LooperOptions struct {
|
||
|
Iterations uint
|
||
|
Timeout time.Duration
|
||
|
MinPayload uint64
|
||
|
MaxPayload uint64
|
||
|
MinDwell time.Duration
|
||
|
MaxDwell time.Duration
|
||
|
MinPacing time.Duration
|
||
|
MaxPacing time.Duration
|
||
|
}
|