Files
EdgeNode/internal/nodes/http_writer_ext.go

18 lines
277 B
Go
Raw Permalink Normal View History

2024-05-17 18:30:33 +08:00
// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved.
2022-04-04 19:45:57 +08:00
//go:build !plus
// +build !plus
package nodes
import (
"os"
)
2022-04-04 19:45:57 +08:00
func (this *HTTPWriter) canSendfile() (*os.File, bool) {
return nil, false
}
2024-01-11 15:25:47 +08:00
func (this *HTTPWriter) checkPlanBandwidth(n int) {
// stub
}