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.
|
- using Shadowsocks.Interop.V2Ray.Transport;
-
- namespace Shadowsocks.Interop.V2Ray
- {
- public class TransportObject
- {
- public TcpObject TcpSettings { get; set; }
- public KcpObject KcpSettings { get; set; }
- public WebSocketObject WsSettings { get; set; }
- public HttpObject HttpSettings { get; set; }
- public QuicObject QuicSettings { get; set; }
- public DomainSocketObject DsSettings { get; set; }
-
- public TransportObject()
- {
- TcpSettings = new();
- KcpSettings = new();
- WsSettings = new();
- HttpSettings = new();
- QuicSettings = new();
- DsSettings = new();
- }
- }
- }
|