Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-12 | Remove MMDB conversion tool. | Nick Mathewson | |
It was made to convert Maxmind's "mmdb" files into the older format that we used. But now thanks to IPFire Location, we don't have to touch Maxmind formats any more. (See ticket #40224.) | |||
2021-03-12 | Merge branch 'maint-0.4.5' | Nick Mathewson | |
2021-03-12 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Nick Mathewson | |
2021-03-12 | Merge branch 'maint-0.3.5' into maint-0.4.4 | Nick Mathewson | |
2021-03-12 | Remove maxmind license; add ipfire location database license (cc by-sa 4.0) | Nick Mathewson | |
2021-03-12 | Use the right ticket number. | Nick Mathewson | |
2021-03-12 | Merge branch 'maint-0.4.5' | Nick Mathewson | |
2021-03-12 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Nick Mathewson | |
2021-03-12 | Merge branch 'maint-0.3.5' into maint-0.4.4 | Nick Mathewson | |
2021-03-12 | update geoip-2021-03-12 to mention provider transition. | Nick Mathewson | |
2021-03-12 | Update geoip files to match ipfire location db, 2021/03/12. | Nick Mathewson | |
2021-03-12 | Remove changes files already merged in release-0.4.5 | Nick Mathewson | |
2021-03-10 | Merge remote-tracking branch 'tor-gitlab/mr/336' | Nick Mathewson | |
2021-03-10 | Merge branch 'maint-0.4.5' | Nick Mathewson | |
2021-03-10 | Merge remote-tracking branch 'tor-gitlab/mr/335' into maint-0.4.5 | Nick Mathewson | |
2021-03-10 | Merge branch 'maint-0.4.5' | David Goulet | |
2021-03-10 | Merge branch 'tor-gitlab/mr/331' into maint-0.4.5 | David Goulet | |
2021-03-10 | Merge branch 'tor-gitlab/mr/331' | David Goulet | |
2021-03-10 | Merge branch 'maint-0.4.5' | David Goulet | |
2021-03-10 | vote: Add "stats" line | David Goulet | |
Closes #40314 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-03-10 | hs: Remove hamrless BUG() that can happen | David Goulet | |
When reloading a service, we can re-register a service and thus end up again in the metrics store initialization code path which is fine. No need to BUG() anymore. Fixes #40334 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-03-09 | Start a changelog for 0.4.6.1-alpha | Nick Mathewson | |
2021-03-09 | Remove changes files that are already merged in 0.4.5.x | Nick Mathewson | |
2021-03-08 | Fix documentation formatting for VirtualAddrNetworkIPv6 | Nick Mathewson | |
Fixes bug #40256; bugfix on 0.2.9.4-alpha. | |||
2021-03-03 | Fix parsing bug in linux get_total_system_memory(). | Nick Mathewson | |
Use find_str_at_start_of_line(), not strstr() here: we don't want to match "MemTotal: " if it appears in the middle of a line. Fixes #40315; bugfix on 0.2.5.4-alpha. | |||
2021-03-03 | Merge remote-tracking branch 'tor-gitlab/mr/213' | Alexander Færøy | |
2021-03-02 | Add geoip-db-tool/Cargo.lock to version control, as is the custom. | Nick Mathewson | |
2021-03-01 | Merge branch 'tor-gitlab/mr/328' | David Goulet | |
2021-03-01 | Merge branch 'maint-0.4.4' into maint-0.4.5 | David Goulet | |
2021-03-01 | Merge branch 'maint-0.4.5' | David Goulet | |
2021-03-01 | Merge branch 'maint-0.3.5' into maint-0.4.4 | David Goulet | |
2021-03-01 | git-list-tor-branches: remove 0.4.3 | Nick Mathewson | |
2021-03-01 | Correct documentation for lib_meminfo.md | Nick Mathewson | |
2021-02-26 | Change %lu to %TOR_PRIuSZ in dos.c. | Alexander Færøy | |
This patch unbreaks the Windows build on master that was introduced in 99703eaca0f. | |||
2021-02-26 | Merge remote-tracking branch 'tor-gitlab/mr/317' | George Kadianakis | |
2021-02-24 | Merge branch 'maint-0.4.5' | David Goulet | |
2021-02-24 | Merge branch 'tor-gitlab/mr/321' into maint-0.4.5 | David Goulet | |
2021-02-24 | Merge remote-tracking branch 'tor-gitlab/mr/306' | George Kadianakis | |
2021-02-23 | Merge branch 'maint-0.4.5' | David Goulet | |
2021-02-23 | Merge branch 'tor-gitlab/mr/326' into maint-0.4.5 | David Goulet | |
2021-02-23 | Remove mallinfo() from codebase | David Goulet | |
Now deprecated in libc >= 2.33 Closes #40309 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-02-23 | Remove mallinfo() from codebase | David Goulet | |
Now deprecated in libc >= 2.33 Closes #40309 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-02-23 | relay: Avoid a directory early fetch | David Goulet | |
The directory_fetches_from_authorities() is used to know if a client or relay should fetch data from an authority early in the boot process. We had a condition in that function that made a relay trigger that fetch if it didn't know its address (so we can learn it). However, when this is called, the address discovery has not been done yet so it would always return true for a relay. Furthermore, it would always trigger a log notice that the IPv4 couldn't be found which was inevitable because the address discovery process has not been done yet (done when building our first descriptor). It is also important to point out that starting in 0.4.5.1-alpha, asking an authority for an address is done during address discovery time using a one-hop circuit thus independent from the relay deciding to fetch or not documents from an authority. Small fix also is to reverse the "IPv(4|6)Only" flag in the notice so that if we can't find IPv6 it would output to use IPv4Only. Fixes #40300 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-02-23 | Merge remote-tracking branch 'tor-gitlab/mr/320' | Nick Mathewson | |
2021-02-23 | dos: Change the DoS heartbeat line format | David Goulet | |
Fix a bug introduced in 94b56eaa7597e4a091a5b51d2c9032ea046631e3 which overwrite the connection message line. Furthermore, improve how we generate that line by using a smartlist and change the format so it is clearer of what is being rejected/detected and, if applicable, which option is disabled thus yielding no stats. Closes #40308 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-02-23 | Merge remote-tracking branch 'origin/master' | Nick Mathewson | |
2021-02-23 | Tweak documentation on 40282 | Nick Mathewson | |
2021-02-23 | Merge branch 'ticket40282_046_01_squashed' | Nick Mathewson | |
2021-02-23 | changes: Add changes file for #40282 | David Goulet | |
Closes #40282 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-02-23 | man: Note that relay now ignore the DirPort option | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> |