- Authorities now list vote for the Stable flag for any router whose
weighted MTBF is at least 5 days, regardless of the mean MTBF.
- Stop logging nameserver addresses in reverse order.
+ - If we are retrying something slowly over and over, do not
+ automatically give up after the 254th failure. Bugfix on
+ 0.2.1.9-alpha.
o Code simplifications and refactoring:
- Change our header file guard macros to be less likely to conflict
int increment;
tor_assert(dls);
if (status_code != 503 || server) {
- if (dls->n_download_failures < IMPOSSIBLE_TO_DOWNLOAD)
+ if (dls->n_download_failures < IMPOSSIBLE_TO_DOWNLOAD-1)
++dls->n_download_failures;
}