This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Bottleneck Bandwidth and RTT (BBR) congestion control | |
| * | |
| * BBR congestion control computes the sending rate based on the delivery | |
| * rate (throughput) estimated from ACKs. In a nutshell: | |
| * | |
| * On each ACK, update our model of the network path: | |
| * bottleneck_bandwidth = windowed_max(delivered / elapsed, 10 round trips) | |
| * min_rtt = windowed_min(rtt, 10 seconds) | |
| * pacing_rate = pacing_gain * bottleneck_bandwidth | |
| * cwnd = max(cwnd_gain * bottleneck_bandwidth * min_rtt, 4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git config --global https.proxy http://127.0.0.1:1080 | |
| git config --global https.proxy https://127.0.0.1:1080 | |
| git config --global --unset http.proxy | |
| git config --global --unset https.proxy | |
| npm config delete proxy |