How to use the network.dns.localDomains function in network

To help you get started, we’ve selected a few network examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jan-os / janos / build / preferences.js View on Github external
PreferencesBuilder.prototype.setLocalDomainPref = function() {
  this.prefs['network.dns.localDomains'] = this.domains.join(',');
};
github mozilla-b2g / gaia / build / preferences.js View on Github external
PreferencesBuilder.prototype.setLocalDomainPref = function() {
  this.userPrefs['network.dns.localDomains'] = this.domains.join(',');
};