mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-09 10:01:50 +08:00
10 lines
172 B
C#
10 lines
172 B
C#
namespace Netch.Models.Modes;
|
|
|
|
[Flags]
|
|
public enum ModeFeature
|
|
{
|
|
SupportSocks5 = 0,
|
|
SupportIPv4 = 0,
|
|
SupportSocks5Auth = 0b_0001,
|
|
SupportIPv6 = 0b_0100
|
|
} |