2022-05-18 21:02:58 +08:00
|
|
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
|
|
|
|
|
|
package ddosconfigs
|
|
|
|
|
|
|
|
|
|
type TCPConfig struct {
|
2022-08-26 11:31:50 +08:00
|
|
|
IsPrior bool `json:"isPrior"`
|
|
|
|
|
IsOn bool `json:"isOn"`
|
|
|
|
|
MaxConnections int32 `json:"maxConnections"`
|
|
|
|
|
MaxConnectionsPerIP int32 `json:"maxConnectionsPerIP"`
|
|
|
|
|
|
2022-08-31 10:01:00 +08:00
|
|
|
// 分钟级速率
|
|
|
|
|
NewConnectionsMinutelyRate int32 `json:"newConnectionsRate"` // 分钟
|
|
|
|
|
NewConnectionsMinutelyRateBlockTimeout int32 `json:"newConnectionsRateBlockTimeout"` // 拦截时间
|
|
|
|
|
|
|
|
|
|
// 秒级速率
|
|
|
|
|
NewConnectionsSecondlyRate int32 `json:"newConnectionsSecondlyRate"`
|
|
|
|
|
NewConnectionsSecondlyRateBlockTimeout int32 `json:"newConnectionsSecondlyRateBlockTimeout"`
|
2022-08-26 11:31:50 +08:00
|
|
|
|
|
|
|
|
AllowIPList []*IPConfig `json:"allowIPList"`
|
|
|
|
|
Ports []*PortConfig `json:"ports"`
|
2022-05-18 21:02:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *TCPConfig) Init() error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|