[tor-bugs] #6899 [Tor Client]: Make "OptimisticData auto" mean it's on?
Tor Bug Tracker & Wiki
torproject-admin at torproject.org
Thu Sep 20 12:56:08 UTC 2012
#6899: Make "OptimisticData auto" mean it's on?
-------------------------+--------------------------------------------------
Reporter: arma | Owner:
Type: enhancement | Status: new
Priority: normal | Milestone: Tor: 0.2.3.x-final
Component: Tor Client | Version:
Keywords: | Parent:
Points: | Actualpoints:
-------------------------+--------------------------------------------------
{{{
static int
optimistic_data_enabled(void)
{
const or_options_t *options = get_options();
if (options->OptimisticData < 0) {
/* XXX023 consider having auto default to 1 rather than 0 before
* the 0.2.3 branch goes stable. See bug 3617. -RD */
const int32_t enabled =
networkstatus_get_param(NULL, "UseOptimisticData", 0, 0, 1);
return (int)enabled;
}
return options->OptimisticData;
}
}}}
Has anybody tested it? Should we try turning it on in the consensus to see
what breaks? Do any applications use it?
--
Ticket URL: <https://trac.torproject.org/projects/tor/ticket/6899>
Tor Bug Tracker & Wiki <https://trac.torproject.org/>
The Tor Project: anonymity online
More information about the tor-bugs
mailing list