2021-06-11 13:30:05 +00:00
|
|
|
package dynamic
|
|
|
|
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
|
|
|
|
// TCPMiddleware holds the TCPMiddleware configuration.
|
|
|
|
type TCPMiddleware struct {
|
2022-04-06 09:06:08 +00:00
|
|
|
InFlightConn *TCPInFlightConn `json:"inFlightConn,omitempty" toml:"inFlightConn,omitempty" yaml:"inFlightConn,omitempty" export:"true"`
|
2021-11-29 16:12:06 +00:00
|
|
|
IPWhiteList *TCPIPWhiteList `json:"ipWhiteList,omitempty" toml:"ipWhiteList,omitempty" yaml:"ipWhiteList,omitempty" export:"true"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
|
|
|
|
// TCPInFlightConn holds the TCP in flight connection configuration.
|
|
|
|
type TCPInFlightConn struct {
|
|
|
|
Amount int64 `json:"amount,omitempty" toml:"amount,omitempty" yaml:"amount,omitempty" export:"true"`
|
2021-06-11 13:30:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
|
|
|
|
// TCPIPWhiteList holds the TCP ip white list configuration.
|
|
|
|
type TCPIPWhiteList struct {
|
|
|
|
SourceRange []string `json:"sourceRange,omitempty" toml:"sourceRange,omitempty" yaml:"sourceRange,omitempty"`
|
|
|
|
}
|