mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
472 B
19 lines
472 B
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{})
|
|
}
|