mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
18 lines
428 B
Go
18 lines
428 B
Go
package common
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
)
|
|
|
|
func SelectContext(contextList []context.Context) (int, error) {
|
|
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()
|
|
}
|