luci-proto-vxlan: fix tos write and load handlers

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
This commit is contained in:
Paul Donald
2024-11-07 01:45:41 +01:00
parent 9ddbc11555
commit 1de73e16f5
2 changed files with 10 additions and 4 deletions

View File

@@ -157,10 +157,13 @@ return network.registerProtocol('vxlan', {
return false;
};
o.write = function(section_id, value) {
return uci.set('network', section_id, 'tos', parseInt(value).toString(16).padStart(2, '0'));
if (!value) return
value = value === 'inherit' ? value : parseInt(value).toString(16).padStart(2, '0');
return uci.set('network', section_id, 'tos', value);
};
o.load = function(section_id) {
return parseInt(uci.get('network', section_id, 'tos'), 16).toString();
const value = uci.get('network', section_id, 'tos');
return value ? (value === 'inherit' ? value : parseInt(value, 16).toString()) : null;
};
o = s.taboption('advanced', form.Flag, 'rxcsum', _('Enable rx checksum'));

View File

@@ -157,10 +157,13 @@ return network.registerProtocol('vxlan6', {
return false;
};
o.write = function(section_id, value) {
return uci.set('network', section_id, 'tos', parseInt(value).toString(16).padStart(2, '0'));
if (!value) return
value = value === 'inherit' ? value : parseInt(value).toString(16).padStart(2, '0');
return uci.set('network', section_id, 'tos', value);
};
o.load = function(section_id) {
return parseInt(uci.get('network', section_id, 'tos'), 16).toString();
const value = uci.get('network', section_id, 'tos');
return value ? (value === 'inherit' ? value : parseInt(value, 16).toString()) : null;
};
o = s.taboption('advanced', form.Flag, 'rxcsum', _('Enable rx checksum'));