Skip to content

Instantly share code, notes, and snippets.

@ChrisCarini
Created January 9, 2019 04:34
Show Gist options
  • Save ChrisCarini/1eab6d1fe9b9f5357aea831a35d77699 to your computer and use it in GitHub Desktop.
Save ChrisCarini/1eab6d1fe9b9f5357aea831a35d77699 to your computer and use it in GitHub Desktop.
Asus_router_configuration_js_error
function isPortConflict(_val) {
if (_val == '80')
return "This port is for HTTP LAN port.";
else if (_val == '')
return "This port is for Download Master.";
else if (_val == '8082')
return "This port is for Cloud Disk.";
else if (_val == '443')
return "This port is for Cloud Disk.";
else
return false;
}
isPortConflict = function(){return false;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment