zoukankan      html  css  js  c++  java
  • Android Change TCP Congestion Control

    I The need of Change TCP Congestion Control in Android

    " TCP was originally designed for wired networks. Packet loss is considered to be the result of network congestion and the congestion window size is reduced dramatically as a precaution. However, wireless links are known to experience sporadic and usually temporary losses due to fading, shadowing, hand off, interference, and other radio effects, that are not strictly congestion. After the (erroneous) back-off of the congestion window size, due to wireless packet loss, there may be a congestion avoidance phase with a conservative decrease in window size. This causes the radio link to be underutilized. Extensive research on combating these harmful effects has been conducted. Suggested solutions can be categorized as end-to-end solutions, which require modifications at the client or server,[41] link layer solutions, such as Radio Link Protocol (RLP) in cellular networks, or proxy-based solutions which require some changes in the network without modifying end nodes.[41][42]

    A number of alternative congestion control algorithms, such as Vegas, Westwood, Veno, and Santa Cruz, have been proposed to help solve the wireless problem.[citation needed] "

                                                                                                                                                                                                  -- From WIKIPEDIA

    http://forum.xda-developers.com/showpost.php?p=28152737&postcount=2

    and

    http://forum.xda-developers.com/showpost.php?p=48088128&postcount=1884

    Have listed differences between these control algorithms in Android.

     

    II Step

        config linux kernel to build All TCP Congestion Module -> add busybox to android -> sysctl -w net.ipv4.tcp_congestion_control=cubic

        list tcp config: sysctl -a | grep tcp

  • 相关阅读:
    第4章 ZK基本特性与基于Linux的ZK客户端命令行学习 4-2 session的基本原理与create命令的使用
    第4章 ZK基本特性与基于Linux的ZK客户端命令行学习 4-1 zookeeper常用命令行操作
    3-3 zookeeper的作用体现
    3-2 zk客户端连接关闭服务端,查看znode
    Python(2.7.6) glob
    SonarQube(5.0.1) 环境的安装配置
    Maven(3.0.5) 环境的安装配置
    Linux 命令
    Linux
    Python(2.7.6) copy
  • 原文地址:https://www.cnblogs.com/blowing-in-the-wind/p/6029052.html
Copyright © 2011-2022 走看看