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

     1  // Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
     2  //go:build !plus
     3  
     4  package nodes
     5  
     6  import "net/http"
     7  
     8  func (this *HTTPRequest) processHLSBefore() (blocked bool) {
     9  	//  stub
    10  	return false
    11  }
    12  
    13  func (this *HTTPRequest) processM3u8Response(resp *http.Response) error {
    14  	// stub
    15  	return nil
    16  }