1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 04:25:23 +00:00
v2fly/common/net/port.proto

16 lines
412 B
Protocol Buffer
Raw Normal View History

2016-08-26 22:04:35 +00:00
syntax = "proto3";
2016-09-26 13:14:16 +00:00
package v2ray.core.common.net;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.Common.Net";
2016-08-26 22:04:35 +00:00
option go_package = "net";
2016-09-26 13:14:16 +00:00
option java_package = "com.v2ray.core.common.net";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-08-26 22:04:35 +00:00
// PortRange represents a range of ports.
message PortRange {
2017-02-08 09:01:22 +00:00
// The port that this range starts from.
2016-08-26 22:04:35 +00:00
uint32 From = 1;
2017-02-08 09:01:22 +00:00
// The port that this range ends with (inclusive).
2016-08-26 22:04:35 +00:00
uint32 To = 2;
}