mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-25 18:31:39 +00:00
Closes https://github.com/XTLS/Xray-core/issues/5495#issuecomment-3710683679
15 lines
393 B
Protocol Buffer
15 lines
393 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.proxy.masque;
|
|
option csharp_namespace = "Xray.Proxy.Masque";
|
|
option go_package = "github.com/xtls/xray-core/proxy/masque";
|
|
option java_package = "com.xray.proxy.masque";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protocol/server_spec.proto";
|
|
|
|
message ClientConfig {
|
|
xray.common.protocol.ServerEndpoint server = 1;
|
|
repeated string remote_dns = 2;
|
|
}
|