1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-06 19:15:23 -04:00
v2fly/proxy/dokodemo/dokodemo_factory.go
2015-12-06 18:21:15 +01:00

19 lines
472 B
Go

package dokodemo
import (
"github.com/v2ray/v2ray-core/app"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
)
type DokodemoDoorFactory struct {
}
func (this DokodemoDoorFactory) Create(space *app.Space, rawConfig interface{}) (connhandler.InboundConnectionHandler, error) {
config := rawConfig.(Config)
return NewDokodemoDoor(space, config), nil
}
func init() {
connhandler.RegisterInboundConnectionHandlerFactory("dokodemo-door", DokodemoDoorFactory{})
}