port.proto 412 B

123456789101112131415
  1. syntax = "proto3";
  2. package v2ray.core.common.net;
  3. option csharp_namespace = "V2Ray.Core.Common.Net";
  4. option go_package = "net";
  5. option java_package = "com.v2ray.core.common.net";
  6. option java_multiple_files = true;
  7. // PortRange represents a range of ports.
  8. message PortRange {
  9. // The port that this range starts from.
  10. uint32 From = 1;
  11. // The port that this range ends with (inclusive).
  12. uint32 To = 2;
  13. }