1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-26 12:05:35 -05:00

rename NewDokodemoDoor

This commit is contained in:
Darien Raymond
2017-01-13 23:38:04 +01:00
parent 195594bed0
commit 88b607d31b
2 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ type DokodemoDoor struct {
meta *proxy.InboundHandlerMeta
}
func NewDokodemoDoor(ctx context.Context, config *Config) (*DokodemoDoor, error) {
func New(ctx context.Context, config *Config) (*DokodemoDoor, error) {
space := app.SpaceFromContext(ctx)
if space == nil {
return nil, errors.New("Dokodemo: No space in context.")
@@ -215,6 +215,6 @@ func (v *DokodemoDoor) HandleTCPConnection(conn internet.Connection) {
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return NewDokodemoDoor(ctx, config.(*Config))
return New(ctx, config.(*Config))
}))
}