v2ray-core/proxy/http/http_factory.go

16 lines
434 B
Go
Raw Normal View History

2015-12-15 16:00:47 +01:00
package http
import (
"github.com/v2ray/v2ray-core/app"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
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() {
2016-01-02 23:08:36 +01:00
if err := internal.RegisterInboundConnectionHandlerFactory("http", func(space app.Space, rawConfig interface{}) (connhandler.InboundConnectionHandler, error) {
return NewHttpProxyServer(space, rawConfig.(Config)), nil
}); err != nil {
panic(err)
}
2015-12-15 16:00:47 +01:00
}