[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-115.0.2esr-13.0-1] Revert "fixup! Bug 40562: Added Tor Browser preferences to 000-tor-browser.js"



Title: GitLab

richard pushed to branch tor-browser-115.0.2esr-13.0-1 at The Tor Project / Applications / Tor Browser

Commits:

  • 93ef5b2d
    by Richard Pospesel at 2023-07-21T16:49:26+00:00
    Revert "fixup! Bug 40562: Added Tor Browser preferences to 000-tor-browser.js"
    
    This reverts commit da33ad3bc03cc015d404b6907978a82585518259.
    

1 changed file:

Changes:

  • browser/app/profile/000-tor-browser.js
    ... ... @@ -74,23 +74,28 @@ pref("extensions.torlauncher.quickstart", false);
    74 74
     
    
    75 75
     pref("extensions.torlauncher.max_tor_log_entries", 1000);
    
    76 76
     
    
    77
    -// On Linux and macOS, Tor Browser can use IPC for the communication with the
    
    78
    -// tor daemon, and this is the preferred way.
    
    79
    -// You can set the path of the Unix sockets with control_ipc_path.
    
    80
    -// If a relative one is provided, it is handled like torrc_path (see below).
    
    81
    -// Tor Browser on Windows will use TCP (and it can be used also on Linux and
    
    82
    -// macOS, if preferred).
    
    83
    -// Host and port can be customized with control_host and control_port.
    
    84
    -// This applies both to the control port and to the SOCKS port, but their
    
    85
    -// configurations are completely independent.
    
    86
    -pref("extensions.torlauncher.control_port_use_ipc", true);
    
    87
    -pref("extensions.torlauncher.control_ipc_path", "");
    
    77
    +// By default, Tor Launcher configures a TCP listener for the Tor
    
    78
    +// control port, as defined by control_host and control_port.
    
    79
    +// Set control_port_use_ipc to true to use an IPC object (e.g., a Unix
    
    80
    +// domain socket) instead. You may also modify control_ipc_path to
    
    81
    +// override the default IPC object location. If a relative path is used,
    
    82
    +// it is handled like torrc_path (see below).
    
    88 83
     pref("extensions.torlauncher.control_host", "127.0.0.1");
    
    89 84
     pref("extensions.torlauncher.control_port", 9151);
    
    90
    -pref("extensions.torlauncher.socks_port_use_ipc", true);
    
    91
    -pref("extensions.torlauncher.socks_ipc_path", "");
    
    85
    +pref("extensions.torlauncher.control_port_use_ipc", false);
    
    86
    +pref("extensions.torlauncher.control_ipc_path", "");
    
    87
    +
    
    88
    +// By default, Tor Launcher configures a TCP listener for the Tor
    
    89
    +// SOCKS port. The host is taken from the network.proxy.socks pref and
    
    90
    +// the port is taken from the network.proxy.socks_port pref.
    
    91
    +// Set socks_port_use_ipc to true to use an IPC object (e.g., a Unix
    
    92
    +// domain socket) instead. You may also modify socks_ipc_path to
    
    93
    +// override the default IPC object location. If a relative path is used,
    
    94
    +// it is handled like torrc_path (see below).
    
    92 95
     // Modify socks_port_flags to use a different set of SocksPort flags (but be
    
    93 96
     // careful).
    
    97
    +pref("extensions.torlauncher.socks_port_use_ipc", false);
    
    98
    +pref("extensions.torlauncher.socks_ipc_path", "");
    
    94 99
     pref("extensions.torlauncher.socks_port_flags", "ExtendedErrors IPv6Traffic PreferIPv6 KeepAliveIsolateSOCKSAuth");
    
    95 100
     
    
    96 101
     // The tor_path is relative to the application directory. On Linux and
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits