Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Learn More

information about:config commands

  • 9 svar
  • 1 har detta problem
  • 1 visning
  • Senaste svar av Mace2

more options

Can anyone provide me with a site for "about:config" commands? I tried "http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries" but I get an error "Server Error in '/' Application."

Can anyone provide me with a site for "about:config" commands? I tried "http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries" but I get an error "Server Error in '/' Application."

Alla svar (9)

more options
more options

Hi, mozillazine.org is down, no idea what is going on.

more options
more options

If I want to search for a command "network.notify.ipv6" for example what site will allow me to search and identify a command?

more options
more options

What specific prefs are you interested in?

There are to many prefs to have docs about all of them and there are hidden prefs that do not show on about:config when they have the default value. In such cases only searching the source code will work. The DXR links I posted above should cover all or most prefs you see on the about:config page. Some have a comment and others do not have a comment.

more options

If for example I try to find the function of "Network.notify.ipv6" and I place it in the search bar I get a result as shown.

4 results from the mozilla-release tree:

modules/libpref/init/all.js ♢ 1484 pref("network.notify.IPv6", false); ♢ 1486 pref("network.notify.IPv6", true); netwerk/system/win32/nsNotifyAddrListener.cpp ♢ 56

  1. define NETWORK_NOTIFY_IPV6_PREF "network.notify.IPv6"

obj-x86_64-pc-linux-gnu/dist/bin/greprefs.js ♢ 1476 pref("network.notify.IPv6", true);

more options

If you inspect all.js then you see:

// Allow network detection of IPv6 related changes (bug 1245059)
#if defined(XP_WIN)
pref("network.notify.IPv6", false);
#else
pref("network.notify.IPv6", true);
#endif
  • bug 1245059 - network interfaces coming and going frequently causes connection timeouts

(please do not comment in bug reports
https://bugzilla.mozilla.org/page.cgi?id=etiquette.html
)

more options

But that does not describe the function Network.notify.ipv6.

Does it provide a notification if it Firefox is communicating with IPV6?