WIFI-830: Cloud BE: support configuration of fragmentation threshold -- Disable this write to ovsdb until AP support is present

This commit is contained in:
Mike Hansen
2020-10-21 09:35:18 -04:00
parent 94b8234ce3
commit d291e55831

View File

@@ -244,6 +244,7 @@ public class OvsdbDao {
public ConnectNodeInfo getConnectNodeInfo(OvsdbClient ovsdbClient) {
ConnectNodeInfo ret = new ConnectNodeInfo();
try {
@@ -312,6 +313,9 @@ public class OvsdbDao {
return ret;
}
private void fillInRadioInterfaceNames(OvsdbClient ovsdbClient, ConnectNodeInfo ret) {
try {
List<Operation> operations = new ArrayList<>();
@@ -2678,7 +2682,8 @@ public class OvsdbDao {
customOptions.put("client_dl_limit", String.valueOf(clientDlLimit * 1000));
customOptions.put("client_ul_limit", String.valueOf(clientUlLimit * 1000));
customOptions.put("rts_threshold", String.valueOf(rtsCtsThreshold));
customOptions.put("frag_threshold", String.valueOf(fragThresholdBytes));
// TODO: the frag_threshold is not supported on the AP
// customOptions.put("frag_threshold", String.valueOf(fragThresholdBytes));
customOptions.put("dtim_period", String.valueOf(dtimPeriod));