mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03:00
9f0ef36cc0
* Refactor transport * Rename tcp to raw * Fix * Fix Fix raw http ui Fill xhttp default mode Fix share uri Remove RawHost Fix singbox tcp http path Fix vmess share uri * Tidy Resx * Fix * Rename TransportExtra to TransportExtraItem --------- Co-authored-by: 2dust <31833384+2dust@users.noreply.github.com>
15 lines
147 B
C#
15 lines
147 B
C#
namespace ServiceLib.Enums;
|
|
|
|
public enum ETransport
|
|
{
|
|
raw,
|
|
kcp,
|
|
ws,
|
|
httpupgrade,
|
|
xhttp,
|
|
h2,
|
|
http,
|
|
quic,
|
|
grpc
|
|
}
|