mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-15 22:10:26 +00:00
https://github.com/XTLS/Xray-core/pull/6327#issuecomment-5592421364 --------- Co-authored-by: RPRX <63339210+RPRX@users.noreply.github.com>
22 lines
628 B
Protocol Buffer
22 lines
628 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;
|
|
|
|
import "transport/internet/config.proto";
|
|
|
|
message Config {
|
|
xray.transport.internet.SocketConfig sockopt = 1;
|
|
bool local = 2;
|
|
bool remote = 3;
|
|
bool remote_once = 4;
|
|
int64 interval_min = 5;
|
|
int64 interval_max = 6;
|
|
repeated uint32 remote_ports = 7;
|
|
repeated string remoteIPs = 8;
|
|
}
|
|
|