port.proto 183 B

12345678910
  1. syntax = "proto3";
  2. package com.v2ray.core.common.net;
  3. option go_package = "net";
  4. // PortRange represents a range of ports.
  5. message PortRange {
  6. uint32 From = 1;
  7. uint32 To = 2;
  8. }