1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-27 06:44:24 -04:00
v2fly/transport/internet/kcp/config.proto

47 lines
903 B
Protocol Buffer
Raw Normal View History

2016-09-21 08:39:07 -04:00
syntax = "proto3";
package com.v2ray.core.transport.internet.kcp;
option go_package = "kcp";
import "v2ray.com/core/transport/internet/authenticator.proto";
2016-09-21 15:08:05 -04: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-09-21 08:39:07 -04:00
message Config {
2016-09-21 15:08:05 -04:00
MTU mtu = 1;
TTI tti = 2;
UplinkCapacity uplink_capacity = 3;
DownlinkCapacity downlink_capacity = 4;
2016-09-21 08:39:07 -04:00
bool congestion = 5;
2016-09-21 15:08:05 -04:00
WriteBuffer write_buffer = 6;
ReadBuffer read_buffer = 7;
2016-09-21 08:39:07 -04:00
com.v2ray.core.transport.internet.AuthenticatorConfig header_config = 8;
}