Skip to content
Snippets Groups Projects
  1. Sep 04, 2012
  2. Sep 03, 2012
  3. Sep 01, 2012
    • Roger Dingledine's avatar
      Make begindir_cutoff the same as general_cutoff · eb3d0796
      Roger Dingledine authored
      Allow one-hop directory fetching circuits the full "circuit build timeout"
      period, rather than just half of it, before failing them and marking
      the relay down. This fix should help reduce cases where clients declare
      relays (or worse, bridges) unreachable because the TLS handshake takes
      a few seconds to complete.
      
      Fixes bug 6743 (one piece of bug 3443); bugfix on 0.2.2.2-alpha, where
      we changed the timeout from a static 30 seconds.
      eb3d0796
  4. Aug 31, 2012
  5. Aug 27, 2012
  6. Aug 24, 2012
  7. Aug 21, 2012
  8. Aug 17, 2012
  9. Aug 16, 2012
  10. Aug 15, 2012
    • Nick Mathewson's avatar
      Fix warnings and 64-bit problems in openbsd-malloc code · 6a33c33a
      Nick Mathewson authored
      The warning fixes are:
        - Only define issetugid if it's missing.
        - Explicitly ignore the return value of writev.
        - Explicitly cast the retval of readlink() to int.
      
      The 64-bit problems are related to just storing a size_t in an int. Not cool!  Use a size_t instead.
      
      Fix for bug 6379. Bugfix on 0.2.0.20-rc, which introduced openbsd-malloc.
      6a33c33a
    • Nick Mathewson's avatar
      Fix wildcarded address mappings from the control port · 2ba52f40
      Nick Mathewson authored
      Apparently, we weren't actually detecting wildcardedness when parsing
      them: whoops!
      
      bug 6244.  Bugfix on 0.2.3.9-alpha
      2ba52f40
    • Nick Mathewson's avatar
      Raise the part of torrc mapaddress handling that knows wildcards · 959f8500
      Nick Mathewson authored
      This patch extracts the inner part of config_register_addressmaps --
      the part that knows about detecting wildcard addresses addresses --
      and makes it into a new function.  The new function is deliberately
      not moved or reindented, so that the diff is smaller.
      
      I need this to fix bug 6244.
      959f8500
  11. Aug 14, 2012
  12. Aug 09, 2012
    • Nick Mathewson's avatar
    • Nick Mathewson's avatar
      Fix spaces from last patch · e1fb3b8d
      Nick Mathewson authored
      e1fb3b8d
    • Nick Mathewson's avatar
      Don't infer we have a FooPort from the presence of a FooPort line · dfe03d36
      Nick Mathewson authored
      Thanks to the changes we started making with SocksPort and friends
      in 0.2.3.3-alpha, any of our code that did "if (options->Sockport)"
      became wrong, since "SocksPort 0" would make that test true whereas
      using the default SocksPort value would make it false.  (We didn't
      actually do "if (options->SockPort)" but we did have tests for
      TransPort.  When we moved DirPort, ORPort, and ControlPort over to
      the same system in 0.2.3.9-alpha, the problem got worse, since our
      code is littered with checks for DirPort and ORPort as booleans.
      
      This code renames the current linelist-based FooPort options to
      FooPort_lines, and adds new FooPort_set options which get set at
      parse-and-validate time on the or_options_t.  FooPort_set is true
      iff we will actually try to open a listener of the given type. (I
      renamed the FooPort options rather than leave them alone so that
      every previous user of a FooPort would need to get inspected, and so
      that any new code that forgetfully uses FooPort will need fail to
      compile.)
      
      Fix for bug 6507.
      dfe03d36
    • Nick Mathewson's avatar
  13. Aug 03, 2012
Loading