0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-04-28 22:31:25 +03:00

13 lines
289 B
Protocol Buffer
Raw Normal View History

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;
2021-07-03 16:01:59 +08:00
int32 idle_timeout = 4;
int32 health_check_timeout = 5;
}