Remove urltest outbound

This commit is contained in:
世界 2022-07-28 16:36:31 +08:00
parent c240f1b359
commit c0a2f77258
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
14 changed files with 20 additions and 324 deletions

View file

@ -103,3 +103,10 @@ func (s *Selector) NewConnection(ctx context.Context, conn net.Conn, metadata ad
func (s *Selector) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
return s.selected.NewPacketConnection(ctx, conn, metadata)
}
func RealTag(detour adapter.Outbound) string {
if group, isGroup := detour.(adapter.OutboundGroup); isGroup {
return group.Now()
}
return detour.Tag()
}