您的位置:首页 > 理论基础 > 计算机网络

(OK) porting MPTCP to LineageOS-14.1-kiwi (Android-7.1.1,运行在Huawei honor 5x) for VirtualBox- 100% 成功

2017-04-05 23:52 1271 查看




gedit kernel/net/mptcp/Kconfig

将下面这段

choice
prompt "Default MPTCP Scheduler"
default DEFAULT
# default Round-Robin
help
Select the Scheduler of your choice

config DEFAULT_ROUNDROBIN
bool "Round-Robin" if MPTCP_ROUNDROBIN=y
---help---
This is the round-rob scheduler, sending in a round-robin
fashion..

config DEFAULT_SCHEDULER
bool "Default"
---help---
This is the default scheduler, sending first on the subflow
with the lowest RTT.


修改为
choice
prompt "Default MPTCP Scheduler"
default DEFAULT
# default Round-Robin
help
Select the Scheduler of your choice

config DEFAULT_SCHEDULER
bool "Default"
---help---
This is the default scheduler, sending first on the subflow
with the lowest RTT.

config DEFAULT_ROUNDROBIN
bool "Round-Robin" if MPTCP_ROUNDROBIN=y
---help---
This is the round-rob scheduler, sending in a round-robin
fashion..
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐