Add trojan inbound/outbound

This commit is contained in:
世界 2022-08-08 08:56:04 +08:00
parent df6635c620
commit 6d78cf6b58
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
19 changed files with 521 additions and 9 deletions

View file

@ -33,6 +33,8 @@ func New(ctx context.Context, router adapter.Router, logger log.ContextLogger, o
return NewShadowsocks(ctx, router, logger, options.Tag, options.ShadowsocksOptions)
case C.TypeVMess:
return NewVMess(ctx, router, logger, options.Tag, options.VMessOptions)
case C.TypeTrojan:
return NewTrojan(ctx, router, logger, options.Tag, options.TrojanOptions)
default:
return nil, E.New("unknown inbound type: ", options.Type)
}