mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-07-09 21:28:56 +00:00
567500c4af
Usage: https://github.com/XTLS/Xray-core/pull/6334#issue-4685556394 Behavior: https://github.com/XTLS/Xray-core/pull/6334#issuecomment-4751547750 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
18 lines
598 B
Protocol Buffer
18 lines
598 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.transport.internet.finalmask.fragment;
|
|
option csharp_namespace = "Xray.Transport.Internet.Finalmask.Fragment";
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/finalmask/fragment";
|
|
option java_package = "com.xray.transport.internet.finalmask.fragment";
|
|
option java_multiple_files = true;
|
|
|
|
message Config {
|
|
int64 packets_from = 1;
|
|
int64 packets_to = 2;
|
|
int64 max_split_min = 7;
|
|
int64 max_split_max = 8;
|
|
repeated int64 lengths_min = 9;
|
|
repeated int64 lengths_max = 10;
|
|
repeated int64 delays_min = 11;
|
|
repeated int64 delays_max = 12;
|
|
} |