Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-03 | Merge branch 'maint-0.3.5' into maint-0.4.5 | David Goulet | |
2021-11-03 | shellcheck: Make it happy on couple scripts | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-10-26 | Merge branch 'maint-0.3.5' into maint-0.4.5 | David Goulet | |
2021-10-26 | ci: Missing source dir when parsing configure.ac version | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-10-25 | ci: Exclude HSv2 Stem tests | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-05-28 | Stop using the "x$FOO" idiom in git-resquash.sh | Nick Mathewson | |
The new version of shellcheck says that that this idiom is unnecessary, and its presence here is making the shellcheck tests fail. No changes file needed, since this is not user-facing code. | |||
2021-04-19 | scripts/build/combine_libs: use $AR rather than ar | Emery Hemingway | |
Using a custom ar at $AR may be necessary for cross-compilation. Closes #40369 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-02-05 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Alexander Færøy | |
2021-02-05 | Fix CI build: practracker error in connection_edge.c, take two. | Alexander Færøy | |
This was a bad copy and paste error from the previous commit which generated a duplicated entry error from practracker. Unreviewed build fix. See: tor#40275. | |||
2021-02-05 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Alexander Færøy | |
2021-02-05 | Fix CI build: practracker error in connection_edge.c. | Alexander Færøy | |
We solve this error by allowing the connection_exit_connect() function to be 130 lines long. Unreviewed build fix commit. See: tor#40275. | |||
2021-01-21 | Merge branch 'maint-0.4.4' into maint-0.4.5 | David Goulet | |
2021-01-21 | Merge branch 'maint-0.4.3' into maint-0.4.4 | David Goulet | |
2021-01-21 | Merge branch 'maint-0.3.5' into maint-0.4.3 | David Goulet | |
2021-01-21 | build: Add "make lsp" command | David Goulet | |
Generates the compile_commands.json file using the "bear" application so the ccls server can be more efficient with our code base. Closes #40227 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-11-12 | Fix typos. | Samanta Navarro | |
Typos found with codespell. Please keep in mind that this should have impact on actual code and must be carefully evaluated: src/core/or/lttng_circuit.inc - ctf_enum_value("CONTROLER", CIRCUIT_PURPOSE_CONTROLLER) + ctf_enum_value("CONTROLLER", CIRCUIT_PURPOSE_CONTROLLER) | |||
2020-10-30 | Merge remote-tracking branch 'tor-gitlab/mr/174' into master | George Kadianakis | |
2020-10-23 | Merge branch 'combined_libs' | Nick Mathewson | |
2020-10-16 | Regenerate extample_extrainfo.inc and adjust tests. | Nick Mathewson | |
2020-10-16 | Regenerate complete failing_routerdescs.inc and adjust tests accordingly. | Nick Mathewson | |
2020-10-16 | Update makedesc.py script so that it works with python3. | Nick Mathewson | |
2020-10-06 | Expose TOR_PT_OUTBOUND_BIND_ADDRESS_{V4,V6} to Pluggable Transports. | Alexander Færøy | |
This patch adds support for exposing the environment variables `TOR_PT_OUTBOUND_BIND_ADDRESS_V4` and `TOR_PT_OUTBOUND_BIND_ADDRESS_V6` to Pluggable Transport proccesses. These two values will contain the IPv4 and IPv6 address that the user have specified in torrc that they wish the PT to use for all outgoing IP packets. It is important to note here that it is up to the indvidual Pluggable Transport if they are willing to honor these values or ignore them completely. One can test this feature using the following dummy PT written in POSIX shell script: #!/bin/sh echo "LOG SEVERITY=warning MESSAGE=\"Value for IPv4: ${TOR_PT_OUTBOUND_BIND_ADDRESS_V4}\"" echo "LOG SEVERITY=warning MESSAGE=\"Value for IPv6: ${TOR_PT_OUTBOUND_BIND_ADDRESS_V6}\"" while true ; do sleep 1 done with the following entries in your torrc: OutboundBindAddressPT 203.0.113.4 OutboundBindAddress 203.0.113.5 OutboundBindAddressPT 2001:db8::4 OutboundBindAddress 2001:db8::5 See: https://bugs.torproject.org/5304 | |||
2020-09-23 | Implement IPv6 sybil protection. | vnepveu | |
[This is a squashed patch for ticket 7193, based on taking a "git diff" for the original branch, then applying it with "git apply -3". I earlier attempted to squash the branch with "git rebase", but there were too many conflicts. --nickm] | |||
2020-09-21 | Merge branch 'maint-0.3.5' into maint-0.4.3 | Nick Mathewson | |
2020-09-21 | Merge branch 'maint-0.4.3' into maint-0.4.4 | Nick Mathewson | |
2020-09-21 | Merge branch 'maint-0.4.4' | Nick Mathewson | |
2020-09-21 | Add a few more options for the CI script. | Nick Mathewson | |
These are: --disable-module-relay --disable-module-dirauth --enable-all-bugs-are-fatal --enable-nss | |||
2020-09-18 | Merge branch 'maint-0.3.5' into maint-0.4.3 | Nick Mathewson | |
2020-09-18 | Merge branch 'maint-0.4.3' into maint-0.4.4 | Nick Mathewson | |
2020-09-18 | Add TOR_TRACE_LIBS to fuzzing_include_am.py | Nick Mathewson | |
(It looks like it was forgotten previously) | |||
2020-09-18 | Build one big .a library full of Tor's implementation. | Nick Mathewson | |
This is experimental and probably will break some platforms | |||
2020-09-18 | Copy tracing things back to maint-0.3.5, for consistency. | Nick Mathewson | |
2020-09-15 | Remove 0.4.2 from list of branches in git script: it has reached EOL. | Nick Mathewson | |
2020-08-25 | ci: Add tracing build to Gitlab CI | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-08-14 | Make options_init_from_torrc smaller #40102 | Daniel Pinto | |
Split implementation of several command line options from options_init_from_torrc into smaller isolated functions. | |||
2020-08-12 | Merge branch 'maint-0.4.2' into maint-0.4.3 | Nick Mathewson | |
2020-08-12 | Merge branch 'maint-0.4.3' into maint-0.4.4 | Nick Mathewson | |
2020-08-12 | Merge branch 'maint-0.4.4' | Nick Mathewson | |
2020-08-12 | Merge branch 'maint-0.3.5' into maint-0.4.2 | Nick Mathewson | |
2020-08-12 | CI: Turn on stem with 044 and later. | Nick Mathewson | |
2020-08-12 | Merge remote-tracking branch 'tor-gitlab/mr/62' | Nick Mathewson | |
2020-08-12 | Merge branch 'maint-0.4.2' into maint-0.4.3 | Nick Mathewson | |
2020-08-12 | Merge branch 'maint-0.4.3' into maint-0.4.4 | Nick Mathewson | |
2020-08-12 | Merge branch 'maint-0.3.5' into maint-0.4.2 | Nick Mathewson | |
2020-08-12 | Merge branch 'maint-0.4.4' | Nick Mathewson | |
2020-08-12 | CI: improve output when skipping doxygen | Nick Mathewson | |
2020-08-12 | Try disabling "make all" when checking docs. | Nick Mathewson | |
2020-08-12 | CI: Try to enable integration tests, hardening, and clang. | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.4.2' into maint-0.4.3 | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.3.5' into maint-0.4.2 | Nick Mathewson | |