mirror of
https://github.com/openziti/zrok.git
synced 2024-11-25 17:43:53 +01:00
56 lines
982 B
Go
56 lines
982 B
Go
package limits
|
|
|
|
import "time"
|
|
|
|
const Unlimited = -1
|
|
|
|
type Config struct {
|
|
Environments int
|
|
Shares int
|
|
ReservedShares int
|
|
UniqueNames int
|
|
Bandwidth *BandwidthPerPeriod
|
|
Cycle time.Duration
|
|
Enforcing bool
|
|
}
|
|
|
|
type BandwidthPerPeriod struct {
|
|
Period time.Duration
|
|
Warning *Bandwidth
|
|
Limit *Bandwidth
|
|
}
|
|
|
|
type Bandwidth struct {
|
|
Rx int64
|
|
Tx int64
|
|
Total int64
|
|
}
|
|
|
|
func DefaultBandwidthPerPeriod() *BandwidthPerPeriod {
|
|
return &BandwidthPerPeriod{
|
|
Period: 24 * time.Hour,
|
|
Warning: &Bandwidth{
|
|
Rx: Unlimited,
|
|
Tx: Unlimited,
|
|
Total: Unlimited,
|
|
},
|
|
Limit: &Bandwidth{
|
|
Rx: Unlimited,
|
|
Tx: Unlimited,
|
|
Total: Unlimited,
|
|
},
|
|
}
|
|
}
|
|
|
|
func DefaultConfig() *Config {
|
|
return &Config{
|
|
Environments: Unlimited,
|
|
Shares: Unlimited,
|
|
ReservedShares: Unlimited,
|
|
UniqueNames: Unlimited,
|
|
Bandwidth: DefaultBandwidthPerPeriod(),
|
|
Enforcing: false,
|
|
Cycle: 15 * time.Minute,
|
|
}
|
|
}
|