- Jan 13, 2012
-
-
mrb authored
Change udp memory allocation scheme from uv_buf_init to slab allocation. Takes slab allocation scheme from stream_wrap.
-
- Jan 12, 2012
-
-
Ben Noordhuis authored
-
Igor Zinkovsky authored
fixes #2521
-
Fedor Indutny authored
-
- Jan 11, 2012
-
-
Maciej Małecki authored
`punycode` is a third party code which generates a lot of lint errors. Upstream was contacted in order to fix it in bestiejs/punycode.js#6, but request was denied. Therefore, it's reasonable to exclude this file from linting process. Ref #2456.
-
Ryan Dahl authored
smaller.
-
Ben Noordhuis authored
-
Bert Belder authored
-
Ryan Dahl authored
Tested in production. See also http://code.google.com/p/v8/issues/detail?id=1889
-
- Jan 10, 2012
-
-
Ben Noordhuis authored
The process handle is uninitialized when uv_spawn() fails so don't export the handle to JS land when that happens. Attempts to close the uninitialized handle resulted in segmentation faults and memory corruption. Fixes #2481.
-
Ben Noordhuis authored
-
- Jan 09, 2012
-
-
Ben Noordhuis authored
-
Ryunosuke SATO authored
Fixes #2490.
-
Ben Noordhuis authored
Speeds up the benchmark below by about 680% (0.5s versus 3.4s on my Core 2 Duo). var crypto = require('crypto'); var hash = crypto.createHash('sha1'); var data = new Buffer(1024); for (var i = 0; i < 128 * 1024; ++i) hash.update(data); Fixes #2494. -
Ben Noordhuis authored
Overrides the path to the python binary. Defaults to `python`.
-
- Jan 07, 2012
-
-
koichik authored
-
koichik authored
-
isaacs authored
-
isaacs authored
* V8 hash collision fix (Breaks MIPS) (Bert Belder, Erik Corry) * Upgrade V8 to 3.6.6.15 * Upgrade npm to 1.1.0-beta-10 (isaacs) * many doc updates (Ben Noordhuis, Jeremy Martin, koichik, Dave Irvine, Seong-Rak Choi, Shannen, Adam Malcontenti-Wilson, koichik) * Fix segfault in node_http_parser.cc * dgram, timers: fix memory leaks (Ben Noordhuis, Yoshihiro Kukuchi) * repl: fix repl.start not passing the `ignoreUndefined` arg (Damon Oehlman) * #1980: Socket.pause null reference when called on a closed Stream (koichik) * #2263: XMLHttpRequest piped in a writable file stream hang (koichik) * #2069: http resource leak (koichik) * buffer.readInt global pollution fix (Phil Sung) * timers: fix performance regression (Ben Noordhuis) * #2308, #2246: node swallows openssl error on request (koichik) * #2114: timers: remove _idleTimeout from item in .unenroll() (James Hartig) * #2379: debugger: Request backtrace w/o refs (Fedor Indutny) * simple DTrace ustack helper (Dave Pacheco) * crypto: rewrite HexDecode without snprintf (Roman Shtylman) * crypto: don't ignore DH init errors (Ben Noordhuis)
-
isaacs authored
-
Ryan Dahl authored
-
Bert Belder authored
- If V8 snapshots are enabled then the hash is only randomized at build time. - Breaks MIPS --- Backport hash collision workaround to 3.6. This is made up of 9956, 10351, 10338 and 10330. This change bakes the string hash key into the snapshot, so it is determined at build time for shapshot configs. Review URL: http://codereview.chromium.org/9124004
-
- Jan 06, 2012
- Jan 05, 2012
-
-
Ben Noordhuis authored
-
koichik authored
-
Ryan Dahl authored
-
- Jan 04, 2012
-
-
Ryan Dahl authored
- Save StringPtr if the header hasn't been completely received yet after one packet. - Add one to num_fields and num_values. They were actually one less than the number of fields and values. - Remove always_inline makes debugging difficult, and has negligible performance benefits.
-
Ryan Dahl authored
-
- Jan 02, 2012
-
-
Ben Noordhuis authored
SecureContext.setOptions() is backed by SSL_CTX_set_options() which, contrary to what the name suggests, is additive: it doesn't set options, it adds them to the already active options. Hence the need for SecureContext.clearOptions(), which lets you unset active options.
-
Ben Noordhuis authored
Creating a file event watcher with fs.watch({persistent:false}) should not block the event loop. -
Ben Noordhuis authored
-
Ben Noordhuis authored
-
- Dec 31, 2011
-
-
isaacs authored
-
Ben Noordhuis authored
-
- Dec 30, 2011
-
-
Ben Noordhuis authored
Copies the POST request data verbatim into the response body.
-
Ryan Dahl authored
Unfortunately valgrind must be used to see the bad read. It would be nice if we could improve this test to cause a segfault.
-