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.Transport
- {
- public class DomainSocketObject
- {
- /// <summary>
- /// Gets or sets the path to the unix domain socket file.
- /// </summary>
- public string Path { get; set; }
-
- /// <summary>
- /// Gets or sets whether the domain socket is abstract.
- /// Defaults to false.
- /// </summary>
- public bool Abstract { get; set; }
-
- /// <summary>
- /// Gets or sets whether padding is used.
- /// Defaults to false.
- /// </summary>
- public bool Padding { get; set; }
-
- public DomainSocketObject()
- {
- Path = "";
- Abstract = false;
- Padding = false;
- }
- }
- }
|