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