config.go 236 B

123456789101112
  1. package http
  2. import (
  3. "v2ray.com/core/common"
  4. "v2ray.com/core/transport/internet"
  5. )
  6. func init() {
  7. common.Must(internet.RegisterProtocolConfigCreator(internet.TransportProtocol_HTTP, func() interface{} {
  8. return new(Config)
  9. }))
  10. }