1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-04 14:03:16 +03:00

14 lines
323 B
Protocol Buffer

syntax = "proto3";
package xray.transport.internet.grpc.encoding;
option go_package = "github.com/xtls/xray-core/transport/internet/grpc";
message Config {
string host = 1;
string service_name = 2;
bool multi_mode = 3;
int32 idle_timeout = 4;
int32 health_check_timeout = 5;
bool permit_without_stream = 6;
}