mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
20 lines
544 B
Go
20 lines
544 B
Go
package dokodemo
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/app"
|
|
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
|
|
"github.com/v2ray/v2ray-core/proxy/dokodemo/config/json"
|
|
)
|
|
|
|
type DokodemoDoorFactory struct {
|
|
}
|
|
|
|
func (this DokodemoDoorFactory) Create(space *app.Space, rawConfig interface{}) (connhandler.InboundConnectionHandler, error) {
|
|
config := rawConfig.(*json.DokodemoConfig)
|
|
return NewDokodemoDoor(space, config), nil
|
|
}
|
|
|
|
func init() {
|
|
connhandler.RegisterInboundConnectionHandlerFactory("dokodemo-door", DokodemoDoorFactory{})
|
|
}
|