2016-09-21 14:39:07 +02:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2016-09-26 15:14:16 +02:00
|
|
|
package v2ray.core.transport.internet.kcp;
|
2016-12-23 00:24:28 +01:00
|
|
|
option csharp_namespace = "V2Ray.Core.Transport.Internet.Kcp";
|
2016-09-21 14:39:07 +02:00
|
|
|
option go_package = "kcp";
|
2016-09-26 15:14:16 +02:00
|
|
|
option java_package = "com.v2ray.core.transport.internet.kcp";
|
2017-02-03 23:15:10 +01:00
|
|
|
option java_multiple_files = true;
|
2016-09-21 14:39:07 +02:00
|
|
|
|
2016-12-15 11:51:09 +01:00
|
|
|
import "v2ray.com/core/common/serial/typed_message.proto";
|
2016-09-21 14:39:07 +02:00
|
|
|
|
2016-09-21 21:08:05 +02:00
|
|
|
// Maximum Transmission Unit, in bytes.
|
|
|
|
message MTU {
|
|
|
|
uint32 value = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Transmission Time Interview, in milli-sec.
|
|
|
|
message TTI {
|
|
|
|
uint32 value = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uplink capacity, in MB.
|
|
|
|
message UplinkCapacity {
|
|
|
|
uint32 value = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Downlink capacity, in MB.
|
|
|
|
message DownlinkCapacity {
|
|
|
|
uint32 value = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message WriteBuffer {
|
|
|
|
// Buffer size in bytes.
|
|
|
|
uint32 size = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ReadBuffer {
|
|
|
|
// Buffer size in bytes.
|
|
|
|
uint32 size = 1;
|
|
|
|
}
|
|
|
|
|
2016-11-27 08:58:31 +01:00
|
|
|
message ConnectionReuse {
|
|
|
|
bool enable = 1;
|
|
|
|
}
|
|
|
|
|
2016-09-21 14:39:07 +02:00
|
|
|
message Config {
|
2016-09-21 21:08:05 +02:00
|
|
|
MTU mtu = 1;
|
|
|
|
TTI tti = 2;
|
|
|
|
UplinkCapacity uplink_capacity = 3;
|
|
|
|
DownlinkCapacity downlink_capacity = 4;
|
2016-09-21 14:39:07 +02:00
|
|
|
bool congestion = 5;
|
2016-09-21 21:08:05 +02:00
|
|
|
WriteBuffer write_buffer = 6;
|
|
|
|
ReadBuffer read_buffer = 7;
|
2016-12-15 11:51:09 +01:00
|
|
|
v2ray.core.common.serial.TypedMessage header_config = 8;
|
2017-04-07 21:54:40 +02:00
|
|
|
reserved 9;
|
2016-09-21 14:39:07 +02:00
|
|
|
}
|