You've already forked v2ray-core
Dokodemo proxy
This commit is contained in:
19
proxy/dokodemo/dokodemo_factory.go
Normal file
19
proxy/dokodemo/dokodemo_factory.go
Normal file
@@ -0,0 +1,19 @@
|
||||
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(dispatcher app.PacketDispatcher, rawConfig interface{}) (connhandler.InboundConnectionHandler, error) {
|
||||
config := rawConfig.(*json.DokodemoConfig)
|
||||
return NewDokodemoDoor(dispatcher, config), nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
connhandler.RegisterInboundConnectionHandlerFactory("dokodemo-door", DokodemoDoorFactory{})
|
||||
}
|
||||
Reference in New Issue
Block a user