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