config.proto 427 B

1234567891011121314151617
  1. syntax = "proto3";
  2. package com.v2ray.core.transport.internet.kcp;
  3. option go_package = "kcp";
  4. import "v2ray.com/core/transport/internet/authenticator.proto";
  5. message Config {
  6. uint32 mtu = 1;
  7. uint32 tti = 2;
  8. uint32 uplink_capacity = 3;
  9. uint32 downlink_capacity = 4;
  10. bool congestion = 5;
  11. uint32 write_buffer = 6;
  12. uint32 read_buffer = 7;
  13. com.v2ray.core.transport.internet.AuthenticatorConfig header_config = 8;
  14. }