Ryan Dahl
90da5339c1
Upgrade libuv to 40efa9c
2011-08-24 17:43:33 -07:00
Ryan Dahl
48918f5503
Reapply Peter Bright's fixes for GYP on MSVS
...
Originally 71333b3f5b
2011-08-24 16:23:12 -07:00
Ryan Dahl
06f750c466
fix windows build
2011-08-24 16:20:14 -07:00
Ryan Dahl
f9dae9e8d6
Add dgram_legacy and dgram_uv to node.gyp
2011-08-24 15:55:57 -07:00
Ben Noordhuis
8f245486aa
net: fix multicast on sunos
...
setsockopt(IP_MULTICAST_TTL|IP_MULTICAST_LOOP) takes an unsigned char as
its argument on sunos.
Partially fixes simple/test-dgram-multicast: test hangs after socket
close but it no longer throws EINVAL exceptions.
2011-08-24 22:46:55 +00:00
Ben Noordhuis
accc34c50f
test: fix simple/test-eval
...
Test expects output of console.error(process.argv) to be spread out
over several lines but if /path/to/node is short, it stays on a single line.
2011-08-25 00:18:39 +02:00
Ryan Dahl
52a40e0fd5
Add process.features.debug; fixes simple/test-executable-path.js
2011-08-24 14:16:35 -07:00
Ryan Dahl
2876141c42
dns_uv: add localhost hack for windows
2011-08-24 13:43:05 -07:00
Ben Noordhuis
2513538109
test: add dgram tests to test-uv list
2011-08-24 22:27:25 +02:00
Ben Noordhuis
48f4b2be2b
docs: remove unix dgram documentation
2011-08-24 22:27:25 +02:00
Ben Noordhuis
bba432f00e
dgram: add socket.fd compatibility hack to dgram_uv.js
2011-08-24 22:27:25 +02:00
Ben Noordhuis
11e3cfce8b
dgram: integrate libuv support for UDP over IPv6
2011-08-24 22:27:24 +02:00
Ben Noordhuis
cbd4033619
dgram: integrate libuv UDP support
2011-08-24 22:27:24 +02:00
Ben Noordhuis
9cb624986c
tcp_wrap: update after libuv API change
2011-08-24 22:27:24 +02:00
Ben Noordhuis
2aefea5a2f
stream_wrap: update after libuv API change
2011-08-24 22:27:24 +02:00
Ben Noordhuis
28998a8cfe
uv: upgrade to 80e5491
2011-08-24 22:27:24 +02:00
Ben Noordhuis
7003d6eff5
Move ARRAY_SIZE macro to node.h
2011-08-24 22:27:24 +02:00
Mikeal Rogers
cdbecc48a1
docs: Improved http2 agent docs
...
Fixes #1517 .
2011-08-25 00:55:51 +09:00
Igor Zinkovsky
19ff87a9db
vcbuild.bat - for building from cmd-line using msbuild
2011-08-23 23:55:11 -07:00
Ryan Dahl
06428d853c
tools/test.py to support marking files a libuv-broken
...
Use
export NODE_USE_UV=1
python tools/test.py --libuv simple pummel
To run the equivalent of "make test-uv".
2011-08-23 23:45:46 -07:00
Ryan Dahl
4e1d6fca8e
Mark tests which are broken in libuv
2011-08-23 23:45:21 -07:00
Ryan Dahl
4fa13152af
Support MSVS build directories in tools/test.py
2011-08-23 19:59:07 -07:00
Nathan Rajlich
8ec31a3362
Use Object.getPrototypeOf() on the object in the REPL tab-completion.
...
Some people use __proto__ to augment an Object's prototype after it's been created.
This patch helps make the "new" prototype properties visible if necessary.
This is also more consistent with the while logic below.
2011-08-23 15:35:36 -07:00
Ryan Dahl
b15ab5de51
Upgrade V8 to 3.5.7
2011-08-23 15:17:57 -07:00
Ryan Dahl
42529ddfb5
waf: Don't build out/Debug/node_g - just out/Debug/node
...
This is to match how GYP does it.
2011-08-23 15:13:09 -07:00
Ryan Dahl
827b9c5f1f
net: fix throw error
...
Thanks Tobi
2011-08-23 14:30:12 -07:00
Ryan Dahl
ea156359e9
net_legacy: Fix throw typo
...
Thanks Tobi
2011-08-23 14:27:50 -07:00
Ryan Dahl
a7300c8297
WAF builds in out/ instead of build/
2011-08-23 14:10:39 -07:00
Ryan Dahl
879eb16280
Have WAF variants match GYP configuration names
2011-08-23 14:10:35 -07:00
Ryan Dahl
85f7b78e9b
gyp: Further fixes to target_defaults for mac
2011-08-23 13:19:17 -07:00
Evan Martin
8a29e5ea5b
gyp: Don't pass C++ flags to C compiler, and don't pass -ansi in OpenSSL builds.
2011-08-23 13:19:17 -07:00
Evan Martin
a916d888f2
common.gypi: don't nest "target_defaults" within "target_defaults"
...
The "conditions" block is already within a "target_defaults", so its
children amend target default settings already.
2011-08-23 13:19:17 -07:00
koichik
485d5b5dff
dns: Force the DNS module to invoke callbacks asynchronously.
...
Fixes #1164 .
2011-08-24 03:01:41 +09:00
Ryan Dahl
e3413f08fd
net_uv: throw when people construct net.Socket(fd)
...
Easier to catch compatibility errors.
2011-08-23 02:31:22 -07:00
Ryan Dahl
c4454d2efc
net_uv: Don't error on ECONNRESET
...
Fixes #1571 .
2011-08-22 19:11:38 -07:00
Ryan Dahl
80dd818290
Upgrade GYP to r1010
2011-08-22 17:09:57 -07:00
Ryan Dahl
c2ae39b8d6
gyp: -ldl on linux
2011-08-22 20:07:07 -04:00
Ryan Dahl
cf2e68d960
net_uv: handle read errors
2011-08-22 15:03:27 -07:00
Ryan Dahl
b8d40be611
Upgrade libuv to joyent/libuv@ce20791
2011-08-22 14:52:28 -07:00
Mikeal Rogers
103990b640
Fixes #1531
2011-08-22 14:31:25 -07:00
Maciej Małecki
94963ab39a
Add failing test for https2 compatibility
...
Issue #1531
2011-08-22 14:30:58 -07:00
Ryan Dahl
2e5a8e071e
Update license info for openssl
2011-08-22 11:36:38 -07:00
Peter Bright
0110c90382
Upgrade to 0.9.8r.
...
Build in Win32.
2011-08-22 11:30:47 -07:00
Ryan Dahl
e80cac6225
import openssl from chrome
2011-08-22 11:30:45 -07:00
koichik
509a676128
Doc improvements
2011-08-23 01:15:32 +09:00
koichik
1adfd48448
Doc improvements
2011-08-23 00:18:46 +09:00
Ryan Dahl
ce9caa237f
Fix #1563 . overflow in ChildProcess custom_fd.
...
Backported from master f5db3f1f85
2011-08-20 12:42:58 -07:00
Ryan Dahl
f5db3f1f85
Fix #1563 . overflow in ChildProcess custom_fd.
2011-08-20 12:39:40 -07:00
Maciej Małecki
e150bc4f2b
docs: process.memoryUsage returns memory usage measured in bytes
2011-08-20 01:00:21 +02:00
Maciej Małecki
962a9e808c
docs: process.memoryUsage returns memory usage measured in bytes
2011-08-20 00:59:31 +02:00