mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-19 08:04:40 +03:00
ee6ae3d91d
* Add kcp mtu * Typo
20 lines
554 B
C#
20 lines
554 B
C#
namespace ServiceLib.Models;
|
|
|
|
public record TransportExtraItem
|
|
{
|
|
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; }
|
|
public int? KcpMtu { get; init; }
|
|
}
|