- Jul 24, 2014
-
-
cjihrig authored
Currently, stringification of an empty array outputs a single separator character. This commit causes an empty array to output the empty string. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Jackson Tian authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Shigeki Ohtsu authored
When TLS Alert is occured in handshake, ClearOut only write it into wbio and does not flush to socket. TLS Alert should be written to socket with EncOut before socket is destroyed within its error callback. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Maciej Małecki authored
According to V8 changelog, `armv7` config variable was replaced by `arm_version`, with value either '7', '6' or 'default'. Detect ARMv7 and ARMv6 CPUs and default to 'default'. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
cjihrig authored
Currently, checkExecSyncError() attempts to access the contents of stderr. When stdio is set to 'ignore', this causes a crash. This commit adds a check on the access of stderr. Closes #7966. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Fedor Indutny authored
-
Dean McNamee authored
This allows embedders enough control to initialize node, run the event loop, and cleanly exit (including calling handlers). Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jul 23, 2014
-
-
Fedor Indutny authored
Expose missing constants and keep symbols on OSX.
-
- Jul 17, 2014
-
-
Brian White authored
Closes #7957.
-
- Jul 15, 2014
-
-
Ryan Graham authored
Emits on every call to cluster.setupMaster(), even if no new settings are given. This is because calling cluster.setupMaster() without arguments (or with an empty options object) results in the settings being restored to their defaults. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Ryan Graham authored
Only attributes of 'cluster.settings' will be modified after the first call, leaving all other cluster initialization alone. Each call that includes a 'settings' argument triggers a 'setup' event to be emitted. Instead of each call resetting all values to their defaults, use the current settings (if any) as the default. This retains setupMaster's support how cluster.fork() uses setupMaster() to ensure cluster.settings has been populated. Update example in docs to use current node coding style and include an example of progressive configuration. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jul 14, 2014
-
-
Fedor Indutny authored
-
Dean McNamee authored
Pass in the v8::Context, instead of creating it within CreateEnvironment. This allows callers to use a pre-existing context. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jul 12, 2014
-
-
cjihrig authored
The spawnSync() cwd option was being copied to the incorrect location. This commit copies to the correct location. Closes #7824 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jul 10, 2014
-
-
Ryan Graham authored
Cleaner separation between the traditional non-blocking functions and the new blocking variants. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Ryan Graham authored
Option has been deprecated since v0.5.11 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Ryan Graham authored
The feature has been marked as deprecated since v0.5.11. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Ryan Graham authored
Use a util.deprecate wrapper to issue warnings like any other deprecated API. The option has been marked as deprecated in the docs since v0.5.11. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Andrew Oppenlander authored
Default highWaterMark is now set properly when using stream Duplex's writableObjectMode and readableObjectMode options. Added condition to the already existing split objectMode test to ensure the highWaterMark is being set to the correct default value on both the ReadableState and WritableState for readableObjectMode and writableObjectMode. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jul 09, 2014
-
-
Fedor Indutny authored
fix #7910
-
- Jul 07, 2014
-
-
John Albietz authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Robert Kowalski authored
As we are going to need fs in any case, just require it at the beginning of the file. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jul 03, 2014
-
-
Ed Umansky authored
Fix for `error` events emitting only once when reconnecting a single instance of net.Socket. Fixes joyent/node#7888 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Trevor Norris authored
-
Andrius Bentkus authored
A udp packet can have 0 content. In that case nread will be equal to 0, but addr != NULL. Add test case for empty data gram packets and fixed test that checked for OOB when length == 0. Signed-off-by:Trevor Norris <trev.norris@gmail.com>
-
Fedor Indutny authored
Original commit message: bn_exp.c: fix x86_64-specific crash with one-word modulus. PR: #3397 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Fedor Indutny authored
fix #7417 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Fedor Indutny authored
Accept uid/gid option in every execute/spawn call (including cluster.fork). Add documentation where needed. fix #7881 Signed-off-by:Trevor Norris <trev.norris@gmail.com>
-
Eli Skeggs authored
Fixes #7834 Signed-off-by:Trevor Norris <trev.norris@gmail.com>
-
- Jul 01, 2014
-
-
Yazhong Liu authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Ionică Bizău authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Refael Ackermann authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Arnout Kazemier authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jun 30, 2014
-
-
Fedor Indutny authored
The refactor in 3ae0b17c broke the multiline input's visual appearence. While actually switching to this mode, the `...` prefix is not displayed. Additionally, account only SyntaxErrors that are happening at the parse time, everything else should not be switching repl to the multiline mode. Signed-off-by:
Fedor Indutny <fedor@indutny.com>
-
Jonathan Reem authored
The [Stream documentation for .push](http://nodejs.org/api/stream.html#stream_readable_push_chunk_encoding ) explicitly states multiple times that null is a special cased value that indicates the end of a stream. It is confusing and undocumented that undefined *also* ends the stream, even though in object mode there is a distinct and important difference. The docs for Object-Mode also explicitly mention null as the *only* special cased value, making no mention of undefined. Signed-off-by:
Fedor Indutny <fedor@indutny.com>
-
- Jun 27, 2014
-
-
Fedor Indutny authored
fix #7769 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Yazhong Liu authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
cjihrig authored
Creating a new buffer from the toJSON() output of another buffer does not currently work. This commit adds that support. Closes #7849. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Fedor Indutny authored
-
Saúl Ibarra Corretgé authored
Uses getnameinfo to resolve an address an port into a hostname and service. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-