v2ray-core/proxy/http/http_factory.go

15 lines
378 B
Go
Raw Normal View History

2015-12-15 16:00:47 +01:00
package http
import (
"github.com/v2ray/v2ray-core/app"
2016-01-02 23:32:18 +01:00
"github.com/v2ray/v2ray-core/proxy"
2016-01-02 23:08:36 +01:00
"github.com/v2ray/v2ray-core/proxy/internal"
2015-12-15 16:00:47 +01:00
)
func init() {
internal.MustRegisterInboundConnectionHandlerCreator("http",
func(space app.Space, rawConfig interface{}) (proxy.InboundConnectionHandler, error) {
2016-01-16 13:08:50 +01:00
return NewHttpProxyServer(space, rawConfig.(*Config)), nil
})
2015-12-15 16:00:47 +01:00
}