mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-23 01:27:04 +00:00
https://github.com/XTLS/Xray-core/pull/6327#issuecomment-5645958010 https://github.com/XTLS/Xray-core/pull/6754#issuecomment-5720818254 https://github.com/XTLS/Xray-core/pull/6754#issuecomment-5751585906
20 lines
547 B
Protocol Buffer
20 lines
547 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.transport.internet.finalmask.udphop;
|
|
option csharp_namespace = "Xray.Transport.Internet.Finalmask.Udphop";
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/finalmask/udphop";
|
|
option java_package = "com.xray.transport.internet.finalmask.udphop";
|
|
option java_multiple_files = true;
|
|
|
|
message Config {
|
|
reserved 1;
|
|
bool local = 2;
|
|
bool remote = 3;
|
|
bool remote_once = 4;
|
|
int64 interval_min = 5;
|
|
int64 interval_max = 6;
|
|
repeated string remoteIPs = 7;
|
|
repeated uint32 remote_ports = 8;
|
|
}
|
|
|