mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-07-03 10:18:42 +00:00
2b42699623
https://github.com/XTLS/Xray-core/pull/5872#issuecomment-4198514120 https://github.com/XTLS/Xray-core/pull/6168#issuecomment-4571606666 https://github.com/XTLS/Xray-core/pull/6168#issuecomment-4573294637 Example: https://github.com/XTLS/Xray-core/pull/6168#issue-4484980927 Closes https://github.com/XTLS/Xray-core/discussions/5879
14 lines
392 B
Protocol Buffer
14 lines
392 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.transport.internet.finalmask.xicmp;
|
|
option csharp_namespace = "Xray.Transport.Internet.Finalmask.Xicmp";
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/finalmask/xicmp";
|
|
option java_package = "com.xray.transport.internet.finalmask.xicmp";
|
|
option java_multiple_files = true;
|
|
|
|
message Config {
|
|
bool DGRAM = 1;
|
|
repeated string IPs = 2;
|
|
}
|
|
|