Commits on Oct 6, 2012

  1. Update LICENSE file.

    bnoordhuis committed Oct 6, 2012

Commits on Oct 7, 2012

Commits on Oct 8, 2012

  1. tls: don't use a timer to track renegotiations

    It makes tls.createSecurePair(null, true) hang until the timer expires.
    
    Using a timer here is silly. Use a timestamp instead.
    bnoordhuis committed Oct 8, 2012
  2. zlib: Bugfix and assertion

    isaacs committed Oct 8, 2012
  3. zlib: Handle invalid input smartly

    Also, remove the test thing that asserts an untrue statement regarding
    the Stream API interface.
    isaacs committed Oct 8, 2012
  4. lint

    isaacs committed Oct 8, 2012
  5. wip: setEncoding

    isaacs committed Oct 8, 2012
  6. Set flowing=true when flowing

    isaacs committed Oct 8, 2012
  7. streams2: Make Transform streams pull-style

    That is, the transform is triggered by a _read, not by a _write.
    
    This way, backpressure works properly.
    isaacs committed Oct 8, 2012
  8. streams2: fs streams

    isaacs committed Oct 8, 2012
  9. writable stream: Correct drain/return logic

    It was testing the length *before* adding the current chunk, which
    is the opposite of correct.
    
    Also, the return value was flipped.
    isaacs committed Oct 8, 2012
  10. fixup 0 watermark

    isaacs committed Oct 8, 2012