github.com/kelleygo/clashcore@v1.0.2/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 }