mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 12:09:19 +02:00
sort Outbound selector output (#2914)
* clean code * sort oubound selector output * clean up * fix duplicate outbound
This commit is contained in:
parent
2fa5c299ac
commit
81f9f567ff
|
@ -4,6 +4,7 @@ package outbound
|
|||
|
||||
import (
|
||||
"context"
|
||||
"sort"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
|
@ -148,18 +149,14 @@ func (m *Manager) Select(selectors []string) []string {
|
|||
tags := make([]string, 0, len(selectors))
|
||||
|
||||
for tag := range m.taggedHandler {
|
||||
match := false
|
||||
for _, selector := range selectors {
|
||||
if strings.HasPrefix(tag, selector) {
|
||||
match = true
|
||||
tags = append(tags, tag)
|
||||
break
|
||||
}
|
||||
}
|
||||
if match {
|
||||
tags = append(tags, tag)
|
||||
}
|
||||
}
|
||||
|
||||
sort.Strings(tags)
|
||||
return tags
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue