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.

HeaderObject.cs 479 B

1234567891011121314151617181920212223
  1. namespace Shadowsocks.Interop.V2Ray.Transport.Header
  2. {
  3. public class HeaderObject
  4. {
  5. /// <summary>
  6. /// Gets or sets the header type.
  7. /// Defaults to none.
  8. /// Available values:
  9. /// none
  10. /// srtp
  11. /// utp
  12. /// wechat-video
  13. /// dtls
  14. /// wireguard
  15. /// </summary>
  16. public string Type { get; set; }
  17. public HeaderObject()
  18. {
  19. Type = "none";
  20. }
  21. }
  22. }