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;
|
|
|
|
}
|
2019-02-24 22:43:00 +00:00
|
|
|
|
|
|
|
// PortList is a list of ports.
|
|
|
|
message PortList {
|
|
|
|
repeated PortRange range = 1;
|
|
|
|
}
|