github.com/metacubex/mihomo@v1.18.5/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 }