uid.proto 357 B

12345678910111213
  1. syntax = "proto3";
  2. package xray.common.net;
  3. option csharp_namespace = "Xray.Common.Net";
  4. option go_package = "github.com/xtls/xray-core/common/net";
  5. option java_package = "com.xray.common.net";
  6. option java_multiple_files = true;
  7. // UidList represents a list of uid.
  8. message UidList {
  9. // The port that this range starts from.
  10. repeated uint32 uid = 1;
  11. }