github.com/xxf098/lite-proxy@v0.15.1-0.20230422081941-12c69f323218/transport/ssr/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  }