You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Shadowsocks.Interop.V2Ray.Policy
- {
- public class LevelPolicyObject
- {
- public int Handshake { get; set; }
- public int ConnIdle { get; set; }
- public int UplinkOnly { get; set; }
- public int DownlinkOnly { get; set; }
- public bool StatsUserUplink { get; set; }
- public bool StatsUserDownlink { get; set; }
- public int BufferSize { get; set; }
-
- public LevelPolicyObject()
- {
- Handshake = 4;
- ConnIdle = 300;
- UplinkOnly = 2;
- DownlinkOnly = 5;
- StatsUserUplink = false;
- StatsUserDownlink = false;
- BufferSize = 512;
- }
- }
- }
|