Mariano Iglesias
075605f304
Adding missing v8 namespace to NODE_PSYMBOL
14 years ago
Brett Kiefer
220e2281e4
Fix issue 915 (Failed to find kqueue on FreeBSD) with the relevant portion of a patch submitted to node.js dev ( http://groups.google.com/group/nodejs-dev/browse_thread/thread/3aaf7fe2ca390fdc ) by Davie Siegel. The issue is that event.h requires types.h on FreeBSD. This rearranges some of the logic but looks like it should still be valid for Darwin.
14 years ago
koichik
c60cdcda4e
Fix net.Socket.connect argument parsing
Fixes #1251 .
14 years ago
Ben Noordhuis
bd0baf2338
Check that PR_SET_NAME is defined.
Avoids breaking the build with older (pre-2006) linux kernels.
Raises a JS exception if the script tries to assign to `process.title`.
Fixes #840 .
14 years ago
Ben Noordhuis
8e0d788842
Test for #402 : writing base64 at position > 0 should not mangle the result.
This is a regression test, the bug itself was fixed in v0.3.x.
14 years ago
Ben Noordhuis
d6188bdd27
Document behaviour of the `encoding` parameter of fs.writeFile().
Fixes #401 .
14 years ago
koichik
bcf3c7d31c
Fix doctool uses RegExp object as a Function
RegExp object is no longer Function.
http://code.google.com/p/v8/issues/detail?id=617
Fixes #1262 .
14 years ago
koichik
3e2abd12d3
Fixes #1260
RegExp object is no longer Function.
http://code.google.com/p/v8/issues/detail?id=617
14 years ago
koichik
38a0145869
Fix doctool uses RegExp object as a Function
RegExp object is no longer Function.
http://code.google.com/p/v8/issues/detail?id=617
Fixes #1262 .
14 years ago
koichik
432d54900e
Remove duplicate section in modules.markdown
Fixes #1263
14 years ago
Ryan Dahl
6d8b43c366
http: Fix agent id creation
Unbreaks test-regress-GH-877.js
14 years ago
Ryan Dahl
44d30f2d65
Fix require with --eval
Caused by bad merging of d6ec8f
Fixes #1261 .
14 years ago
Ryan Dahl
69d20f5352
use_uv: Correct readyState on connecting
14 years ago
Ryan Dahl
a1e8fcc5ae
Merge branch 'v0.4'
14 years ago
Ryan Dahl
5a2155dc71
Set process.useUV also on env NODE_USE_UV=1
14 years ago
Henry Rawas
56ec4e4f3c
net_uv: fix test-net-connect-timeout.js test
14 years ago
Ryan Dahl
efca5456b8
Fixes #877 . Don't wait for socket pool to establish connections.
Thanks to Yann Biancheri for putting together an initial test.
14 years ago
Ryan Dahl
f78f654131
Revert "debugger: don't allow users to input non-valid commands"
breaks 'print' command
This reverts commit 37d529f818
.
14 years ago
Ryan Dahl
70a8927a93
Upgrade libuv to ba1c38f to fix mingw build
14 years ago
Robert Mustacchi
2cfab04037
Fix solaris build ( http://codereview.chromium.org/7282034/ )
14 years ago
Ryan Dahl
17ac0316d0
Complete libuv upgrade
14 years ago
Ryan Dahl
412e413edc
Upgrade libuv
14 years ago
Henry Rawas
4c480551c3
net_uv: reuse socket
14 years ago
Yoshihiro KIKUCHI
99b210d7ea
tiny fixes in tty_posix.js
Close #1158
Close #1160
Close #1252
14 years ago
Ryan Dahl
e38ae476ef
net_uv: Stub out setKeepAlive
14 years ago
Henry Rawas
2e1af6df49
Fix V8 mingw32 build
Reported to V8
http://code.google.com/p/v8/issues/detail?id=1508
14 years ago
Ryan Dahl
1cb7b67ac3
Upgrade libuv to 8fd916d6ddc9c7fd0e3e8e668efbc2d782e8e742
14 years ago
Henry Rawas
dd175a4ede
fix mingw build
14 years ago
Ryan Dahl
be1b55289f
net_uv: Fix server.listen argument parsing
14 years ago
Ryan Dahl
33af2720f2
Upgrade V8 to 3.4.8
14 years ago
Ryan Dahl
6afdca885a
Add docs about NODE_USE_UV to man page
14 years ago
Ryan Dahl
20996dbc2b
Revert "Add support for file descriptor type detection."
This reverts commit 911cbd0cef
.
This patch is broken on Linux and I don't want to think about the
functionality during the Windows port. We can reconsider it after v0.6.
14 years ago
Henry Rawas
d64e070e26
net_uv: Delay listen emit
14 years ago
Ryan Dahl
d005cc5cc9
Enable new timer binding only on --use-uv
14 years ago
Ryan Dahl
263e33a738
Revert "Get rid of the old timer binding"
This reverts commit cc82724fdc
.
Conflicts:
src/node.cc
wscript
14 years ago
Ryan Dahl
23b8931b62
Merge branch 'v0.4'
Conflicts:
src/node.js
src/node_version.h
14 years ago
Ryan Dahl
e286480e34
Now working on v0.4.10
14 years ago
Ryan Dahl
de44eafd78
Bump to v0.4.9
14 years ago
Ryan Dahl
1e7769dfa3
Merge branch 'v8-3.1' into v0.4
14 years ago
Ryan Dahl
61553ccdda
Upgrade V8 to 3.1.8.25
14 years ago
Ryan Dahl
09b8a5e2cf
Dont install ares_build.h or ares_rules.h
14 years ago
Henry Rawas
4e1e60fbf0
Fix the MinGW build
14 years ago
Ryan Dahl
8cb5338f35
Fix test-tcp-wrap-listen
14 years ago
Henry Rawas
47a5d93256
Fix test-net-pingpong.js on windows
14 years ago
Ryan Dahl
f657d58fe1
Upgrade libuv to f9b9bb44bd6e2b74729b5d1ff481adf4213e9a0b
14 years ago
koichik
6c121edc60
Fix mismatch createConnection and Socket.connect
net.createConnection() is wrapper for net.Socket.connect(),
but There is mismatch between them.
net.createConnection(port, [host])
net.Socket.connect(port, [host], [callback])
Fixes #1208 .
14 years ago
Ben Noordhuis
c626f8bd8f
Test case for issue #1218 : uncatchable exception on TLS connection error.
14 years ago
Ben Noordhuis
c95da949ec
Prevent "undefined symbol: ev_rt_now" link errors in third-party modules.
Fixes #1181 .
14 years ago
Ryan Dahl
02699a3a8e
net_uv: child process use net_legacy; recognize NODE_USE_UV=1 env var
14 years ago
Ryan Dahl
d0a9e64245
net_uv: Don't add listenerCallback when null
14 years ago