Files
EdgeNode/internal/nodes/http_request_ln.go

26 lines
548 B
Go
Raw Normal View History

2022-04-04 12:06:53 +08:00
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
//go:build !plus
// +build !plus
package nodes
import (
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
)
const (
LNExpiresHeader = "X-Edge-Ln-Expires"
)
2023-06-05 16:38:29 +08:00
func existsLnNodeIP(nodeIP string) bool {
return false
}
2022-04-04 12:06:53 +08:00
func (this *HTTPRequest) checkLnRequest() bool {
return false
}
2023-09-21 16:20:29 +08:00
func (this *HTTPRequest) getLnOrigin(excludingNodeIds []int64, urlHash uint64) (originConfig *serverconfigs.OriginConfig, lnNodeId int64, hasMultipleNodes bool) {
return nil, 0, false
2022-04-04 12:06:53 +08:00
}