mirror of
https://github.com/2dust/v2rayN.git
synced 2025-07-01 12:32:10 +00:00

* add xray core leastPing support * Refactor multi-server configuration UI logic * Remove unused functions
10 lines
146 B
C#
10 lines
146 B
C#
namespace ServiceLib.Enums
|
|
{
|
|
public enum EMultipleLoad
|
|
{
|
|
Random,
|
|
RoundRobin,
|
|
LeastPing,
|
|
LeastLoad
|
|
}
|
|
}
|