github.com/TeaOSLab/EdgeNode@v1.3.8/internal/nodes/http_writer_ext.go (about)

     1  // Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
     2  //go:build !plus
     3  // +build !plus
     4  
     5  package nodes
     6  
     7  import (
     8  	"os"
     9  )
    10  
    11  func (this *HTTPWriter) canSendfile() (*os.File, bool) {
    12  	return nil, false
    13  }
    14  
    15  func (this *HTTPWriter) checkPlanBandwidth(n int) {
    16  	// stub
    17  }