2021-03-14 15:02:07 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package xray.transport.internet.grpc.encoding;
|
|
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/grpc";
|
|
|
|
|
|
|
|
message Config {
|
2024-02-29 14:22:14 +00:00
|
|
|
string authority = 1;
|
2021-03-14 15:02:07 +00:00
|
|
|
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;
|
2021-07-05 21:25:21 +08:00
|
|
|
bool permit_without_stream = 6;
|
2021-12-20 00:47:21 +08:00
|
|
|
int32 initial_windows_size = 7;
|
2023-03-26 09:23:42 +03:30
|
|
|
string user_agent = 8;
|
2024-12-19 10:45:35 +00:00
|
|
|
int32 multi_connections = 9;
|
2021-03-14 15:02:07 +00:00
|
|
|
}
|