diff --git a/luci-app-mptcp/luasrc/model/cbi/mptcp.lua b/luci-app-mptcp/luasrc/model/cbi/mptcp.lua index 50c3cd4dc..7b41db1c4 100644 --- a/luci-app-mptcp/luasrc/model/cbi/mptcp.lua +++ b/luci-app-mptcp/luasrc/model/cbi/mptcp.lua @@ -27,7 +27,7 @@ mtcpsch:value("redundant", translate("redundant")) local mtcpsyn = s:option(Value, "mptcp_syn_retries", translate("Multipath TCP SYN retries")) mtcpsyn.datatype = "uinteger" mtcpsyn.rmempty = false -local congestion = s:option(ListValue, "congestion", translate("Congestion Control")) +local congestion = s:option(ListValue, "congestion", translate("Congestion Control"),translate("Default is bbr")) local availablecong = sys.exec("sysctl net.ipv4.tcp_available_congestion_control | awk -F'= ' '{print $NF}'") for cong in string.gmatch(availablecong, "[^%s]+") do congestion:value(cong, translate(cong))