92b260c0 | 27-Jan-2012 |
Bert Belder |
windows: fix stat("c:\\") regression |
f9252750 | 27-Jan-2012 |
Bert Belder |
Fix windows build |
9c76d0d7 | 26-Jan-2012 |
Ben Noordhuis |
unix: turn on SO_REUSEPORT for UDP sockets Required on BSD-like systems for local UDP multicast. Without it, the bind() call fails with EADDRINUSE. |
b88bc435 | 23-Jan-2012 |
Ben Noordhuis |
unix: implement uv_udp_set_multicast_loop() |
e710fdb5 | 23-Jan-2012 |
Ben Noordhuis |
unix: implement uv_udp_set_ttl() |
02b41f63 | 23-Jan-2012 |
Ben Noordhuis |
Add missing UV_EXTERN declarations in uv.h |
6554954e | 23-Jan-2012 |
Bert Belder |
Windows: add error mapping for WSAENOBUFS |
3ade5f00 | 21-Jan-2012 |
Brandon Benvie |
Windows: Add support for interpreting axiterm-style colors. |
24e6c7ec | 22-Jan-2012 |
Maciej Małecki |
unix: map `ENAMETOOLONG` to `UV_ENAMETOOLONG` With tests. Closes #295 |
edbabe6f | 23-Jan-2012 |
Igor Zinkovsky |
windows: set error using WSAGetLastError |
726e36cf | 23-Jan-2012 |
Igor Zinkovsky |
implement uv_udp_set_multicast_ttl and uv_udp_set_broadcast on windows |
Revision tags: node-v0.6.7, node-v0.6.6, node-v0.6.4, node-v0.6.3 |
|
497b1ecd | 23-Nov-2011 |
Dan VerWeire |
unix: add uv_udp_set_broadcast() and uv_udp_set_multicast_ttl() |
b674187c | 23-Nov-2011 |
Dan VerWeire |
unix: set SO_REUSEADDR before binding |
32b291d5 | 19-Jan-2012 |
Ben Noordhuis |
build: don't set -mmacosx-version-min It sets __MAC_OS_X_VERSION_MIN_REQUIRED__, which is what we use for feature detection. |
646c80bb | 19-Jan-2012 |
Ben Noordhuis |
build: generate Makefiles on OS X |
98f3446c | 19-Jan-2012 |
Ben Noordhuis |
unix: don't close kqueue fd in kqueue_fork() The file descriptor is not inherited by the child process. Trying to close it is not just useless, it's actively harmful - if the close() cal
unix: don't close kqueue fd in kqueue_fork() The file descriptor is not inherited by the child process. Trying to close it is not just useless, it's actively harmful - if the close() call succeeds, it will have closed an altogether different file descriptor.
show more ...
|
bf8ccfce | 17-Jan-2012 |
Ben Noordhuis |
unix: fix segfault in uv_guess_handle() Fixes #293. |
0e6e4abe | 14-Jan-2012 |
Ben Noordhuis |
unix: fix udp recv_start refcount Calling uv_udp_recv_start() should not bump the event loop's reference count. Fixes failing test udp_ref2. |
6d9c9a53 | 13-Jan-2012 |
Ben Noordhuis |
Add uv_loop_refcount() function, debug tool. |
ac218a7e | 13-Jan-2012 |
Ben Noordhuis |
test: add lots of refcount tests |
dc3b80a5 | 13-Jan-2012 |
Ben Noordhuis |
test: add udp4_echo_server helper |
a13584be | 13-Jan-2012 |
Ben Noordhuis |
unix: remove unused #define |
52fba1a3 | 12-Jan-2012 |
Ben Noordhuis |
unix: fix compiler warning |
85576440 | 11-Jan-2012 |
Igor Zinkovsky |
windows: improve uv_fs_stat performance (by about 60%) |
803f5a09 | 09-Jan-2012 |
Ben Noordhuis |
linux: fix build on older distros |