github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/transport/clashssr/obfs/http_post.go (about)

     1  package obfs
     2  
     3  func init() {
     4  	register("http_post", newHTTPPost, 0)
     5  }
     6  
     7  func newHTTPPost(b *Base) Obfs {
     8  	return &httpObfs{Base: b, post: true}
     9  }