2021-03-11 03:46:17 -05:00
|
|
|
syntax = "proto3";
|
2021-08-26 13:01:10 -04:00
|
|
|
|
2021-03-11 03:46:17 -05:00
|
|
|
package v2ray.core.transport.internet.grpc.encoding;
|
2021-08-26 13:01:10 -04:00
|
|
|
option csharp_namespace = "V2Ray.Core.Transport.Internet.Grpc";
|
2022-01-02 10:16:23 -05:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/transport/internet/grpc";
|
2021-08-26 13:01:10 -04:00
|
|
|
option java_package = "com.v2ray.core.transport.internet.grpc";
|
2021-03-11 03:46:17 -05:00
|
|
|
|
2021-09-06 11:21:50 -04:00
|
|
|
import "common/protoext/extensions.proto";
|
|
|
|
|
2021-03-11 03:46:17 -05:00
|
|
|
message Config {
|
2021-09-06 11:21:50 -04:00
|
|
|
option (v2ray.core.common.protoext.message_opt).type = "transport";
|
|
|
|
option (v2ray.core.common.protoext.message_opt).short_name = "grpc";
|
2023-11-21 19:20:35 -05:00
|
|
|
option (v2ray.core.common.protoext.message_opt).allow_restricted_mode_load = true;
|
2021-09-06 11:21:50 -04:00
|
|
|
|
2021-09-07 11:53:09 -04:00
|
|
|
option (v2ray.core.common.protoext.message_opt).transport_original_name = "gun";
|
|
|
|
|
2021-03-11 03:46:17 -05:00
|
|
|
string host = 1;
|
|
|
|
string service_name = 2;
|
|
|
|
}
|