Files
EdgeNode/internal/nodes/origin_state.go

15 lines
343 B
Go
Raw Permalink Normal View History

2024-05-17 18:30:33 +08:00
// Copyright 2021 GoEdge goedge.cdn@gmail.com. All rights reserved.
2021-08-01 21:56:02 +08:00
package nodes
import "github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
type OriginState struct {
CountFails int64
UpdatedAt int64
Config *serverconfigs.OriginConfig
2022-06-29 21:58:41 +08:00
Addr string
2022-06-27 12:01:33 +08:00
TLSHost string
2021-08-01 21:56:02 +08:00
ReverseProxy *serverconfigs.ReverseProxyConfig
}