Files
EdgeNode/internal/nodes/http_writer_ext.go
2024-05-17 18:30:33 +08:00

18 lines
277 B
Go

// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved.
//go:build !plus
// +build !plus
package nodes
import (
"os"
)
func (this *HTTPWriter) canSendfile() (*os.File, bool) {
return nil, false
}
func (this *HTTPWriter) checkPlanBandwidth(n int) {
// stub
}