mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
13 lines
214 B
C#
13 lines
214 B
C#
using System;
|
|
|
|
namespace Netch.Enums
|
|
{
|
|
[Flags]
|
|
public enum ModeFeature
|
|
{
|
|
SupportSocks5 = 0,
|
|
SupportIPv4 = 0,
|
|
SupportSocks5Auth = 0b_0001,
|
|
SupportIPv6 = 0b_0100
|
|
}
|
|
} |