cloudhead
a91b140963
fix process.on edge case with signal event
When adding a listener for a signal event, removing it, and
adding it back again, it triggers a condition with an
undefined variable.
14 years ago
Ryan Dahl
e5a472229b
Now working on v0.4.2
14 years ago
Ryan Dahl
e8aef84191
Bump version to v0.4.1
14 years ago
Brian White
1efac74958
Fix os.cpus() on cygwin
14 years ago
Tj Holowaychuk
42a369620f
Fixed null signal preservation
Closes GH-674.
14 years ago
Ryan Dahl
485ce139fd
Now working on v0.4.1
14 years ago
Ryan Dahl
eb155ea6f6
Bump version to v0.4.0
14 years ago
Theo Schlossnagle
01a864a29d
TLS: CRL support
Needs more tests.
14 years ago
Ryan Dahl
e9257b859d
New DTrace probes from CA team
14 years ago
Ryan Dahl
8cd07bb273
TLS: handle cert chains
14 years ago
Ryan Dahl
56ab929c55
Remove unused parameter from crypto::Handle*Error
14 years ago
Bert Belder
36846f9b6b
Windows: child process fixes
14 years ago
Ryan Dahl
519dc2c114
tls: split bio errors from ssl errors
14 years ago
Ryan Dahl
448e0f4394
tls fixes
14 years ago
Bert Belder
61af4207da
Fix dns on windows
14 years ago
Ryan Dahl
3ec030535c
stderr should be EventEmitter even if it doesn't emit anything
14 years ago
isaacs
5f2e90934e
Support octal strings for modes
This allows the various fs utilities and process.umask to be used in
ECMAScript 5 Strict Mode, where the octal literal format is verboten,
without requiring users to litter their code with a bunch of parseInt
calls.
14 years ago
Konstantin Käfer
9e101f2b01
UCS-2 support
Closes GH-644.
14 years ago
Ryan Dahl
30f24bb2df
Now working on v0.4.0
14 years ago
Ryan Dahl
9493b7563b
Bump version to v0.3.8
14 years ago
Ryan Dahl
c783aefb0f
http-parser: Error on EOF errors
14 years ago
Bert Belder
f99fc29e62
Fix mingw build
14 years ago
Bert Belder
6329633a3e
Windows: open files in binary mode
14 years ago
Ryan Dahl
aa95e5708f
Expose errno with a string.
14 years ago
Ryan Dahl
c10caca34c
Style
14 years ago
Bert Belder
d8d627e2d4
Revert "Workaround for libev handle caching bug on windows"
This reverts commit 25d0e38048
.
14 years ago
Ryan Dahl
bc23ec8d05
Add process.stderr stream
14 years ago
Ryan Dahl
807fca6803
TLS: Set ssl.receivedShutdown after each read
Closes GH-613.
14 years ago
Ryan Dahl
2ff593ad23
TLS: better error reporting at binding layer
Closes GH-612.
14 years ago
Joe Walnes
df6e497793
dgram: setMulticastTTL, setMulticastLoopback and addMembership.
These are options needed for real-world multicasting.
Implementation notes:
- POSIX only.
- IPv4 only (IPv6 multicast is a tricky beast).
- Didn't update tests, because it can't effectively be demonstrated on
localhost only.
14 years ago
Ryan Dahl
fda70b8b90
getaddrinfo exists on windows
14 years ago
Ryan Dahl
43d818a19c
Fix version
14 years ago
Ryan Dahl
97375c475e
Now working on v0.3.8
14 years ago
Ryan Dahl
d8579c6afd
Bump version to v0.3.7
14 years ago
Ryan Dahl
bfb6a67d60
Another fix for process.assert
14 years ago
Ryan Dahl
f9f0e5c75c
Pre-process out assert()
14 years ago
Greg Hughes
1a5e513084
Fix style issues with ext_key_usage patch
Closes GH-586.
14 years ago
Greg Hughes
6c32e155d3
Add ext_key_usage to getPeerCertificate
14 years ago
Bert Belder
f9fea12555
Fix windows build
14 years ago
Ryan Dahl
068b733583
Land Cantrill's DTrace patch
only works on solaris
14 years ago
Felix Geisendörfer
91cc2d8c4b
Restructure src/node.js startup code
This patch introduces a logical structure and sequence for the
bootstrap code found src/node.js.
14 years ago
Ryan Dahl
cc5e9130bb
fs.open should set FD_CLOEXEC
14 years ago
Ryan Dahl
9e976abad9
lint
14 years ago
Bert Belder
f263b29141
Windows: better net support
14 years ago
Bert Belder
25d0e38048
Workaround for libev handle caching bug on windows
The windows socket api uses handles, not fds. Libev caches the handle
associated with an fd, and uses this handle when updating the (also cached)
handle set that goes into select(). When an fd is closed and subsequently
re-used before the event loop returns to libev, libev fails to detect
properly that the handle changed. And even if it does, the cached handle of
the closed socket is overwritten by the new handle, so by the time libev
tries to update the select fdset it has forgotten which handle to remove
from it. This is solved by a simple hook ev_fd_closed that makes it clear
its caches before the fd is re-used.
14 years ago
Felix Geisendörfer
5a49f96505
Move commonjs module system into lib/module.js
This de-couples NativeModule from the module system and completes the
main objective of this refactoring.
14 years ago
Ryan Dahl
7892918353
Now working on v0.3.7
14 years ago
Ryan Dahl
bb3e71466e
Bump version to v0.3.6
14 years ago
Ryan Dahl
0866ecaf3f
...
14 years ago
Bert Belder
a763a4f4d9
Fix memory corruption bug on Windows
14 years ago