mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-02 14:00:25 +08:00
15 lines
348 B
Go
15 lines
348 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package nodes
|
|
|
|
import "github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
|
|
|
type OriginState struct {
|
|
CountFails int64
|
|
UpdatedAt int64
|
|
Config *serverconfigs.OriginConfig
|
|
Addr string
|
|
TLSHost string
|
|
ReverseProxy *serverconfigs.ReverseProxyConfig
|
|
}
|