- Mar 01, 2012
-
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
Conflicts: doc/api/child_process.markdown
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
Conflicts: doc/template.html
-
isaacs authored
Conflicts: Makefile
-
isaacs authored
This puts all images in doc/images/ and references them via http://nodejs.org/images/. Any complaints about copyright usage etc. can thus be node/joyent's problem, rather than the problem of a downstream distribution channel. Conflicts: Makefile
-
isaacs authored
-
- Feb 29, 2012
-
-
Joshua Holbrook authored
-
- Feb 28, 2012
-
-
koichik authored
Fixes #2827.
-
AJ ONeal authored
-
Mathias Bynens authored
-
Igor Zinkovsky authored
-
isaacs authored
-
- Feb 27, 2012
-
-
tedsuo authored
Fixes #2090. Fixes #2336.
-
- Feb 25, 2012
-
-
isaacs authored
-
- Feb 23, 2012
-
-
isaacs authored
-
Igor Zinkovsky authored
-
- Feb 22, 2012
- Feb 21, 2012
-
-
Fedor Indutny authored
This functionality was removed when libuv landed in node. It is useless and can be easily implemented in user-land.
-
- Feb 19, 2012
-
-
Ben Noordhuis authored
-
- Feb 18, 2012
-
-
Paul Vorbach authored
Replace " by '
-
Ben Noordhuis authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
* http: allow multiple WebSocket RFC6455 headers (Einar Otto Stangvik) * http: allow multiple WWW-Authenticate headers (Ben Noordhuis) * windows: support unicode argv and environment variables (Bert Belder) * tls: mitigate session renegotiation attacks (Ben Noordhuis) * tcp, pipe: don't assert on uv_accept() errors (Ben Noordhuis) * tls: Allow establishing secure connection on the existing socket (koichik) * dgram: handle close of dgram socket before DNS lookup completes (Seth Fitzsimmons) * windows: Support half-duplex pipes (Igor Zinkovsky) * build: disable omit-frame-pointer on solaris systems (Dave Pacheco) * debugger: fix --debug-brk (Ben Noordhuis) * net: fix large file downloads failing (koichik) * fs: fix ReadStream failure to read from existing fd (Christopher Jeffrey) * net: destroy socket on DNS error (Stefan Rusu) * dtrace: add missing translator (Dave Pacheco) * unix: don't flush tty on switch to raw mode (Ben Noordhuis) * windows: reset brightness when reverting to default text color (Bert Belder) * npm: update to 1.1.1 - Update which, fstream, mkdirp, request, and rimraf - Fix #2123 Set path properly for lifecycle scripts on windows - Mark the root as seen, so we don't recurse into it. Fixes #1838. (Martin Cooper)
-
isaacs authored
-
- Feb 17, 2012
-
-
Shannen Saez authored
-
Shannen Saez authored
-
Nathan Rajlich authored
-
isaacs authored
-
Ben Noordhuis authored
This commit fixes a bug where the cluster module failed to propagate EADDRINUSE errors. When a worker starts a (net, http) server, it requests the listen socket from its master who then creates and binds the socket. Now, OS X and Windows don't always signal EADDRINUSE from bind() but instead defer the error until a later syscall. libuv mimics this behaviour to provide consistent behaviour across platforms but that means the worker could end up with a socket that is not actually bound to the requested addresss. That's why the worker now checks if the socket is bound, raising EADDRINUSE if that's not the case. Fixes #2721.
-
einaros authored
-
Ben Noordhuis authored
-