mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
23 lines
542 B
Go
23 lines
542 B
Go
package common
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
)
|
|
|
|
// Deprecated: not used
|
|
func SelectContext(contextList []context.Context) (int, error) {
|
|
if len(contextList) == 1 {
|
|
<-contextList[0].Done()
|
|
return 0, contextList[0].Err()
|
|
}
|
|
chosen, _, _ := reflect.Select(Map(Filter(contextList, func(it context.Context) bool {
|
|
return it.Done() != nil
|
|
}), func(it context.Context) reflect.SelectCase {
|
|
return reflect.SelectCase{
|
|
Dir: reflect.SelectRecv,
|
|
Chan: reflect.ValueOf(it.Done()),
|
|
}
|
|
}))
|
|
return chosen, contextList[chosen].Err()
|
|
}
|