mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
18 lines
452 B
Go
18 lines
452 B
Go
package http
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/app"
|
|
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
|
|
)
|
|
|
|
type HttpProxyServerFactory struct {
|
|
}
|
|
|
|
func (this HttpProxyServerFactory) Create(space app.Space, rawConfig interface{}) (connhandler.InboundConnectionHandler, error) {
|
|
return NewHttpProxyServer(space, rawConfig.(Config)), nil
|
|
}
|
|
|
|
func init() {
|
|
connhandler.RegisterInboundConnectionHandlerFactory("http", HttpProxyServerFactory{})
|
|
}
|