- Jan 28, 2012
-
-
isaacs authored
-
isaacs authored
-
isaacs authored
* dgram: Bring back missing functionality for Unix (Dan VerWeire, Roman Shtylman, Ben Noordnuis) - Note: Windows UDP support not yet complete. * http: Fix parser memory leak (koichik) * zlib: Fix #2365 crashes on invalid input (Nicolas LaCasse) * module: fix --debug-brk on symlinked scripts (Fedor Indutny) * Documentation Restyling (Matthew Fitzsimmons) * Update npm to 1.1.0-3 (isaacs) * Windows: fix regression in stat() calls to C:\ (Bert Belder)
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
isaacs authored
-
Ben Noordhuis authored
-
isaacs authored
Thanks @mscdex for spotting this.
-
- Jan 27, 2012
-
-
isaacs authored
Also, if an error is already provided, then raise the provided error, rather than throwing it with a less helpful 'stdout cannot be closed' message. This is important for properly handling EPIPEs.
-
Dan VerWeire authored
- watch for the death of child processes and fail the test if they all die - use setTimeout to fail the test if responses are not received and processed in 5000ms
-
isaacs authored
-
Ben Noordhuis authored
-
- Jan 25, 2012
-
-
Fedor Indutny authored
* fixes #1519
-
- Jan 24, 2012
-
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
The socket is not part of any multicast group. Bug wasn't visible until 6999fb3d.
-
Ben Noordhuis authored
- throw on error, don't return an error code
-
Ben Noordhuis authored
- don't return a value
-
Ben Noordhuis authored
- throw if the ttl argument is not a number - return the ttl argument (not particulary useful but it's what v0.4 did) Note that the 0 < ttl < 256 check has *not* been reinstated. On Linux, -1 is a valid argument to setsockopt(IPPROTO_IP, IP_TTL).
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
Matthew Fitzsimmons authored
-
- Jan 23, 2012
-
-
Igor Zinkovsky authored
-
Igor Zinkovsky authored
-
Ben Noordhuis authored
`retry` is not used if SSL_PRINT_DEBUG is not defined.
-
- Jan 22, 2012
-
-
koichik authored
Fixes #1333.
-
koichik authored
-
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.
-
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.
-
- Jan 21, 2012
-
-
Dan VerWeire authored
Removed during the early stages of node 0.5 refactoring to libuv.
-
Dan VerWeire authored
Removed during the early stages of node 0.5 refactoring to libuv.
-
Roman Shtylman authored
Removed during the early stages of node 0.5 refactoring to libuv.
-
Ben Noordhuis authored
-