mirror of
https://github.com/Telecominfraproject/wlan-cloud-opensync-controller.git
synced 2025-12-24 22:27:00 +00:00
WIFI-830: Cloud BE: support configuration of fragmentation threshold -- Disable this write to ovsdb until AP support is present
This commit is contained in:
@@ -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));
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user