Brian White
d75c338dd6
Add more functionality to the os module
14 years ago
Tom Hughes
0d58353d66
Don't access buffer data before initializing it.
Prevents valgrind from complaining and still tests that buffer data is
treated as unsigned.
14 years ago
Tom Hughes
b38f4712c4
Fix memory leak in node_crypto.cc.
Both HexDecode and unbase64 allocate buffers, which weren't being freed.
14 years ago
Tom Hughes
4b555091e4
Fix memory corruption with unnamed AF_UNIX sockets.
AF_UNIX sockets can have a pathname, be unnamed, or abstract (Linux
only). If an unnamed socket is returned by getsockname, getpeername, or
accept, sun_path should not be inspected.
14 years ago
Ryan Dahl
d02131d206
Add 'make test-valgrind'
14 years ago
Ryan Dahl
4227e9d79d
process.kill coerces args to integers
14 years ago
Oleg Slobodskoi
23cf938e4f
fix assert.throws
14 years ago
Ryan Dahl
d793fcaabd
Add toolchain=gcc to V8 build for Sun
14 years ago
Theo Schlossnagle
b202483e47
The following error can be thrown from accept on ECONNABORT. Instead, it should be ignored.
net:1100
if (e.errno != EMFILE) throw e;
^
Error: ECONNABORTED, Software caused connection abort
at IOWatcher.callback (net:1098:24)
at node.js:773:9
14 years ago
Ryan Dahl
1a894b39b3
Upgrade V8 to 3.0.4
14 years ago
Jeremy Martin
6f726cf8c7
url.parse(url, true) defaults query field to {}
14 years ago
Ryan Dahl
8db0bbe0dc
Add callback to CryptoStream.write
14 years ago
Ryan Dahl
fca713eba4
Add doc for Buffer.isBuffer
14 years ago
Ryan Dahl
41d73e02a2
cleartext.socket always exists
14 years ago
Ryan Dahl
bb27885251
TLS: check we're not disconnected before Cleartext blow
14 years ago
Ryan Dahl
3cf2cbf904
Parse issuer and subject from CryptoStream.getPeerCertificate
14 years ago
Ryan Dahl
24aded078f
Add optional filters to stream.pipe()
14 years ago
Ryan Dahl
a8f666ebb8
Now working on v0.3.3-pre
14 years ago
Ryan Dahl
4bb914bde9
Bump version to v0.3.2
14 years ago
Ryan Dahl
d1f36accbf
Remove toJSON usage - it was removed from V8
14 years ago
Ryan Dahl
7d425a0a16
Upgrade V8 to 3.0.3
14 years ago
Brian White
9eaf2329e7
Fix compilation on OpenBSD and FreeBSD
While it compiles fine on FreeBSD, at least on amd64 node dies with:
"CALL_AND_RETRY_0 allocation failed - process out of memory"
14 years ago
Ryan Dahl
d0beac70f4
Revert "Simplify next tick logic by looping around ev_loop"
This reverts commit 241ea7e595
.
Fixes GH-511: https://github.com/ry/node/issues/issue/511
14 years ago
Jorge Chamorro Bieling
e530507cb1
Add failing test for GH-511
14 years ago
Brian White
6d75c06e64
Add os module to repl's built-in lib list
14 years ago
Ryan Dahl
2dc17e93ee
Add oprofile patch to repo
14 years ago
Ryan Dahl
02aae22397
Add solaris patch file
14 years ago
Ryan Dahl
c9d3a81db0
Patch V8 to compile on solaris
14 years ago
Ryan Dahl
033ab7ebb6
Add 5 sec timeout to test-tls-securepair-client
This test is broken for people who don't have OpenSSL 1.0.0 - but it's just
a bug in OpenSSL. Add this timeout so that it doesn't take super long to run
the tests.
14 years ago
Ryan Dahl
c6406f9e57
Apply V8 r5951 to fix Mac build
From f3973972b727df480697443871d780596aba0201 Mon Sep 17 00:00:00 2001
From: erik.corry@gmail.com <erik.corry@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Date: Wed, 8 Dec 2010 16:23:25 +0000
Subject: [PATCH] Speed up quoting of JSON strings by allocating a string that is big enough
and then trimming it when the length is known. This way we only have to
traverse the input once.
Review URL: http://codereview.chromium.org/5556012
14 years ago
Ryan Dahl
ea700a8851
Upgrade V8 to 3.0.2
14 years ago
Ryan Dahl
632da2a393
Add callback paramenter to socket.connect()
14 years ago
Ryan Dahl
c4161f32f5
Add callback to socket.write()
14 years ago
Ryan Dahl
c970968ee6
better option parsing for socket.write()
14 years ago
Ryan Dahl
1dad95a3a9
Print 'make clean' commands
14 years ago
Ryan Dahl
7d73779446
Make oprofile work
14 years ago
Ryan Dahl
1d78159e8f
Upgrade V8 to 3.0.1
14 years ago
isaacs
3d0627dc6a
link windows/cygwin build to the wiki docs
Suggested by temp01 in IRC.
http://irc.npmjs.org/node.js/2010-12-12#NODE-JS-2010-12-12T18-59-36-270Z
18:59:36 temp01: I feel like the build section on nodejs.org should link
there
19:11:18 isaacs: temp01: yeah, that'd be helpful
14 years ago
Felix Geisendörfer
e27418ca3f
Prefer require.cache over native module cache
This patch changes node's module loading behavior so that the
require.cache is always the first place to consider when loading a
module.
The motivation for this change is to help people who are writing
focused tests for their node.js applications, and need a mechanism
to inject test doubles to replace native node.js modules.
14 years ago
Ryan Dahl
a59483bd1d
TLS: server should die on junk
14 years ago
Ryan Dahl
c9e5cfcc34
Random doc fixes
14 years ago
Ryan Dahl
5bdcec67f0
Add docs for tls.connect()
14 years ago
Ryan Dahl
e3d1808ef0
Rename node::SecureStream to node::crypto::Connection
node::SecureStream is definitely not a "stream" in the Node sense. Renaming
it to avoid ambiguity. (Adding namespace to not confuse with some other
Connection object.)
14 years ago
Ryan Dahl
6636bfaa0a
TLS: Simplify code from suck and blow
14 years ago
Ryan Dahl
66767edf12
Add CryptoStream.destroy()
14 years ago
Ryan Dahl
953561ab06
Factor out CryptoStream.end; support data on end()
14 years ago
Ryan Dahl
4f2ab03e97
Fix typo
14 years ago
Brian White
f1762ff815
Add os module and getHostname
14 years ago
Ryan Dahl
dc65cbd2e9
Factor out some _cycle functionality into Cleartext and EncrypteStreams
14 years ago
Ryan Dahl
70baeba8a9
Add receivedShutdown() binding
14 years ago