Xray-core/transport/internet/grpc/config.proto

16 lines
387 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 authority = 1;
string service_name = 2;
bool multi_mode = 3;
2021-07-03 11:01:59 +03:00
int32 idle_timeout = 4;
int32 health_check_timeout = 5;
bool permit_without_stream = 6;
2021-12-19 18:47:21 +02:00
int32 initial_windows_size = 7;
2023-03-26 08:53:42 +03:00
string user_agent = 8;
}