mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
7184a8165f
Why couldn't you have Host, for the last three years?
16 lines
387 B
Protocol Buffer
16 lines
387 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 authority = 1;
|
|
string service_name = 2;
|
|
bool multi_mode = 3;
|
|
int32 idle_timeout = 4;
|
|
int32 health_check_timeout = 5;
|
|
bool permit_without_stream = 6;
|
|
int32 initial_windows_size = 7;
|
|
string user_agent = 8;
|
|
}
|