1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 01:57:12 -05:00

Type switch for UnixReceiver

This commit is contained in:
Shelikhoo 2017-12-28 11:06:51 +08:00
parent b9dddd0586
commit 7afd26a78f
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

View File

@ -143,6 +143,10 @@ func NewHandler(ctx context.Context, config *core.InboundHandlerConfig) (core.In
return nil, newError("unknown allocation strategy: ", receiverSettings.AllocationStrategy.Type).AtError()
}
func (m *Manager) asUnixReceiverConfig(ctx context.Context, config *core.InboundHandlerConfig) {
}
func init() {
common.Must(common.RegisterConfig((*proxyman.InboundConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return New(ctx, config.(*proxyman.InboundConfig))