mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-14 19:45:45 +00:00
Fix raw http ui Fill xhttp default mode Fix share uri Remove RawHost Fix singbox tcp http path Fix vmess share uri
18 lines
512 B
C#
18 lines
512 B
C#
namespace ServiceLib.Models;
|
|
|
|
public record TransportExtra
|
|
{
|
|
public string? RawHeaderType { get; init; }
|
|
|
|
public string? Host { get; init; }
|
|
public string? Path { get; init; }
|
|
public string? XhttpMode { get; init; }
|
|
public string? XhttpExtra { get; init; }
|
|
|
|
public string? GrpcAuthority { get; init; }
|
|
public string? GrpcServiceName { get; init; }
|
|
public string? GrpcMode { get; init; }
|
|
|
|
public string? KcpHeaderType { get; init; }
|
|
public string? KcpSeed { get; init; }
|
|
}
|