1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-05 16:55:27 -05:00

add grpc service register

This commit is contained in:
Shelikhoo
2021-09-07 14:43:45 +01:00
parent 8ed83b6d0a
commit 434d9e8700
10 changed files with 381 additions and 337 deletions

View File

@@ -8,6 +8,7 @@ option java_multiple_files = true;
import "common/protocol/user.proto";
import "google/protobuf/any.proto";
import "common/protoext/extensions.proto";
import "config.proto";
message AddUserOperation {
@@ -70,4 +71,7 @@ service HandlerService {
rpc AlterOutbound(AlterOutboundRequest) returns (AlterOutboundResponse) {}
}
message Config {}
message Config {
option (v2ray.core.common.protoext.message_opt).type = "grpcservice";
option (v2ray.core.common.protoext.message_opt).short_name = "proxyman";
}