1. Jan 28, 2012
  2. Jan 27, 2012
  3. Jan 25, 2012
  4. Jan 24, 2012
  5. Jan 23, 2012
  6. Jan 22, 2012
    • koichik's avatar
      test: fix test/simple/test-net-server-max-connections.js is racey · 82718009
      koichik authored
      Fixes #1333.
      82718009
    • koichik's avatar
      test: for #2109 · 93298afc
      koichik authored
      93298afc
    • Brandon Benvie's avatar
      util: use getOwnPropertyDescripter · f9014438
      Brandon Benvie authored
      Change formatProperty in util.js to use Object.getOwnPropertyDescriptor
      instead of __lookup[GS]etter__.
      
      Use the cached value from the descriptor to reduce number of property
      lookups from 3 to 1.
      
      Fallback to standard lookup if the descriptor is empty. This doesn't
      ever happen with normal JS objects (this function is called only when
      the key exists) but apparently does with Node's custom ENV interface.
      
      Fixes: #2109.
      f9014438
    • koichik's avatar
      http: keep-alive should default with HTTP/1.1 server · 3df7c90c
      koichik authored
      As RFC 2616 says we should, assume that servers will provide a persistent
      connection by default.
      
      > A significant difference between HTTP/1.1 and earlier versions of
      > HTTP is that persistent connections are the default behavior of any
      > HTTP connection. That is, unless otherwise indicated, the client
      > SHOULD assume that the server will maintain a persistent connection,
      > even after error responses from the server.
      
      > HTTP/1.1 applications that do not support persistent connections MUST
      > include the "close" connection option in every message.
      
      Fixes #2436.
      3df7c90c
  7. Jan 21, 2012