Skip to content
  1. Feb 12, 2019
  2. Jan 23, 2019
  3. Jan 09, 2019
  4. Jan 07, 2019
  5. Jan 04, 2019
  6. Dec 11, 2018
  7. Dec 10, 2018
    • teor's avatar
      Fallbacks: Update the hard-coded fallback list in December 2018 · 4991b293
      teor authored
      Merge Phoul's two lists into teor's list.
      
      Replace the 150 fallbacks originally introduced in Tor 0.3.3.1-alpha in
      January 2018 (of which ~115 were still functional), with a list of
      157 fallbacks (92 new, 65 existing, 85 removed) generated in
      December 2018.
      
      Closes ticket 24803.
      4991b293
  8. Dec 07, 2018
    • teor's avatar
      Fallbacks: Update the hard-coded fallback list in December 2018 · 78e177d6
      teor authored
      Replace the 150 fallbacks originally introduced in Tor 0.3.3.1-alpha in
      January 2018 (of which ~115 were still functional), with a list of
      148 fallbacks (89 new, 59 existing, 91 removed) generated in
      December 2018.
      
      Closes ticket 24803.
      78e177d6
  9. Dec 05, 2018
  10. Nov 15, 2018
  11. Nov 13, 2018
  12. Nov 12, 2018
    • Nick Mathewson's avatar
      Fix a compiler warning in aes.c. · 1a11702a
      Nick Mathewson authored
      Apparently some freebsd compilers can't tell that 'c' will never
      be used uninitialized.
      
      Fixes bug 28413; bugfix on 0.2.9.3-alpha when we added support for
      longer AES keys to this function.
      1a11702a
  13. Nov 11, 2018
  14. Nov 09, 2018
  15. Oct 31, 2018
  16. Oct 25, 2018
  17. Oct 23, 2018
  18. Oct 15, 2018
  19. Oct 10, 2018
  20. Sep 18, 2018
    • teor's avatar
      Travis: use the Homebrew addon · e8c7d7d3
      teor authored
      Use the Travis Homebrew addon to install packages on macOS. The package
      list is the same, but the Homebrew addon does not do a `brew update` by
      default.
      
      This makes builds faster, at the cost of using slightly older packages.
      
      Implements ticket 27738.
      e8c7d7d3
  21. Sep 14, 2018
    • Nick Mathewson's avatar
      Revise our assertion and bug macros to work with -Wparentheses · bb465be0
      Nick Mathewson authored
      On GCC and Clang, there's a feature to warn you about bad
      conditionals like "if (a = b)", which should be "if (a == b)".
      However, they don't warn you if there are extra parentheses around
      "a = b".
      
      Unfortunately, the tor_assert() macro and all of its kin have been
      passing their inputs through stuff like PREDICT_UNLIKELY(expr) or
      PREDICT_UNLIKELY(!(expr)), both of which expand to stuff with more
      parentheses around "expr", thus suppressing these warnings.
      
      To fix this, this patch introduces new macros that do not wrap
      expr.  They're only used when GCC or Clang is enabled (both define
      __GNUC__), since they require GCC's "({statement expression})"
      syntax extension.  They're only used when we're building the
      unit-test variant of the object files, since they suppress the
      branch-prediction hints.
      
      I've confirmed that tor_assert(), tor_assert_nonfatal(),
      tor_assert_nonfatal_once(), BUG(), and IF_BUG_ONCE() all now give
      compiler warnings when their argument is an assignment expression.
      
      Fixes bug 27709.
      
      Bugfix on 0.0.6, where we first introduced the "tor_assert()" macro.
      bb465be0
    • cypherpunks's avatar
      protover: reject invalid protocol names · e24195c7
      cypherpunks authored
      The spec only allows the characters [A-Za-z0-9-].
      
      Fix on b2b2e1c7.
      Fixes #27316; bugfix on 0.2.9.4-alpha.
      e24195c7
  22. Sep 13, 2018
  23. Sep 12, 2018
  24. Sep 11, 2018
  25. Sep 10, 2018
  26. Sep 07, 2018