test.proto 665 B

123456789101112131415161718
  1. syntax = "proto3";
  2. package v2ray.core.common.protoext.testing;
  3. option csharp_namespace = "V2Ray.Core.Common.ProtoExt.Testing";
  4. option go_package = "github.com/v2fly/v2ray-core/common/protoext/testing";
  5. option java_package = "com.v2ray.core.common.protoext.testing";
  6. option java_multiple_files = true;
  7. import "common/protoext/extensions.proto";
  8. message TestingMessage{
  9. option (v2ray.core.common.protoext.message_opt).type = "demo";
  10. option (v2ray.core.common.protoext.message_opt).type = "demo2";
  11. string test_field = 1
  12. [(v2ray.core.common.protoext.field_opt).allowed_values = "test",
  13. (v2ray.core.common.protoext.field_opt).allowed_values = "test2"];
  14. }