1. Jul 02, 2013
  2. Jun 28, 2013
  3. Jun 27, 2013
  4. Jun 25, 2013
  5. Jun 24, 2013
  6. Jun 20, 2013
  7. Jun 19, 2013
  8. Jun 17, 2013
  9. Jun 16, 2013
  10. Jun 15, 2013
  11. Jun 14, 2013
  12. Jun 13, 2013
  13. Jun 12, 2013
  14. Jun 11, 2013
    • Ben Noordhuis's avatar
      crypto: fix utf8/utf-8 encoding check · 82b3524b
      Ben Noordhuis authored
      Normalize the encoding in getEncoding() before using it. Fixes a
      "AssertionError: Cannot change encoding" exception when the caller
      mixes "utf8" and "utf-8".
      
      Fixes #5655.
      82b3524b
  15. Jun 07, 2013
  16. Jun 05, 2013
    • isaacs's avatar
      net: Destroy when not readable and not writable · e0519ace
      isaacs authored
      This is only relevant for CentOS 6.3 using kernel version 2.6.32.
      
      On other linuxes and darwin, the `read` call gets an ECONNRESET in that
      case.  On sunos, the `write` call fails with EPIPE.
      
      However, old CentOS will occasionally send an EOF instead of a
      ECONNRESET or EPIPE when the client has been destroyed abruptly.
      
      Make sure we don't keep trying to write or read more in that case.
      
      Fixes #5504
      
      However, there is still the question of what libuv should do when it
      gets an EOF.  Apparently in this case, it will continue trying to read,
      which is almost certainly the wrong thing to do.
      
      That should be fixed in libuv, even though this works around the issue.
      e0519ace