mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-22 16:07:49 +08:00
23 lines
827 B
Protocol Buffer
23 lines
827 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package v2ray.core.transport.internet.grpc.encoding;
|
|
option csharp_namespace = "V2Ray.Core.Transport.Internet.Grpc";
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/transport/internet/grpc";
|
|
option java_package = "com.v2ray.core.transport.internet.grpc";
|
|
|
|
import "common/protoext/extensions.proto";
|
|
|
|
message Config {
|
|
option (v2ray.core.common.protoext.message_opt).type = "transport";
|
|
option (v2ray.core.common.protoext.message_opt).short_name = "grpc";
|
|
option (v2ray.core.common.protoext.message_opt).allow_restricted_mode_load = true;
|
|
|
|
option (v2ray.core.common.protoext.message_opt).transport_original_name = "gun";
|
|
|
|
string host = 1;
|
|
string service_name = 2;
|
|
int32 idle_timeout = 3;
|
|
int32 health_check_timeout = 4;
|
|
bool permit_without_stream = 5;
|
|
int32 initial_windows_size = 6;
|
|
} |