Skip to content
Snippets Groups Projects
  1. Jul 18, 2012
  2. Jul 17, 2012
  3. Jul 16, 2012
  4. Jul 06, 2012
  5. Jul 05, 2012
  6. Jul 01, 2012
    • Roger Dingledine's avatar
      Revert "Detect bug 6252 (unexpected sendme cell)" · d13389b3
      Roger Dingledine authored
      This reverts commit c32ec9c4.
      
      It turns out the two sides of the circuit don't actually stay in sync,
      so it is perfectly normal for the circuit window on the exit relay to
      grow to 2000+. We should fix that bug and then reconsider this patch.
      d13389b3
    • Roger Dingledine's avatar
      Detect bug 6252 (unexpected sendme cell) · c32ec9c4
      Roger Dingledine authored
      I only check on circuits, not streams, since bloating your stream
      window past the initial circuit window can't help you much.
      
      Also, I compare to CIRCWINDOW_START_MAX so we don't have surprising
      races if we lower CIRCWINDOW_START for an experiment.
      c32ec9c4
  7. Jun 28, 2012
  8. Jun 26, 2012
  9. Jun 25, 2012
  10. Jun 23, 2012
    • Nick Mathewson's avatar
      Catch a few more K&R violations with make check-spaces · a6688c57
      Nick Mathewson authored
      We now catch bare {s that should be on the previous line with a do,
      while, if, or for, and elses that should share a line with their
      preceding }.
      
      That is,
          if (foo)
          {
      and
          if (foo) {
            ...
          }
          else
      
      are now detected.
      
      We should think about maybe making Tor uncrustify-clean some day,
      but configuring uncrustify is an exercise in bizarreness, and
      reformatting huge gobs of Tor is always painful.
      a6688c57
    • Roger Dingledine's avatar
      fix broken utf8-ism · ce44346a
      Roger Dingledine authored
      ce44346a
    • Nick Mathewson's avatar
      Don't assert in get_string_from_pipe() on len==0 · ffd7189b
      Nick Mathewson authored
      We can treat this case as an EAGAIN (probably because of an
      unexpected internal NUL) rather than a crash-worthy problem.
      
      Fixes bug 6225, again.  Bug not in any released version of Tor.
      ffd7189b
Loading