History log of /libuv/ (Results 2501 – 2525 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
06f9e14329-Aug-2014 Saúl Ibarra Corretgé

core: add a reserved field to uv_handle_t and uv_req_t

Just in case we need to work hard in keeping ABI compatibility.

49ec7ca229-Aug-2014 Saúl Ibarra Corretgé

doc: update README with versioning information

e524f89b29-Aug-2014 Saúl Ibarra Corretgé

core: update version to 1.0.0

6941cab527-Aug-2014 Bert Belder

windows: fix buffer leak after failed udp send

Fixes #1426

Signed-off-by: Saúl Ibarra Corretgé <saghul@gmail.com>

fabafd6223-Aug-2014 Saúl Ibarra Corretgé

windows: make sure sockets and handles are reset on close

Set the socket to INVALID_SOCKET foir TCP and UDP handles and
the handle to INVALID_HANDLE_VALUE on TTY handles after closing th

windows: make sure sockets and handles are reset on close

Set the socket to INVALID_SOCKET foir TCP and UDP handles and
the handle to INVALID_HANDLE_VALUE on TTY handles after closing them.

show more ...

4ca9a36322-Aug-2014 Saúl Ibarra Corretgé

unix, windows: add uv_fileno

Returns the platform specific file descriptor for handles that are
backed by one. The datatype is abstracted as uv_os_fd_t, which maps to
int on Unices a

unix, windows: add uv_fileno

Returns the platform specific file descriptor for handles that are
backed by one. The datatype is abstracted as uv_os_fd_t, which maps to
int on Unices and HANDLE on Windows.

Users can use this function to set specific socket options, for example,
in a non portable way.

This function is essentially a shotgun, you better be careful with
whatever you do with it, don't blame me if you used it to get the fd of
a stream, close it yourself and expect things to Just Work.

show more ...

bd0692e624-Aug-2014 Saúl Ibarra Corretgé

build: use same CFLAGS in autotools build as in gyp

Closes #1362

394d218824-Aug-2014 Saúl Ibarra Corretgé

build: remove unneeded define in uv.gyp

It's a leftover from the days libuv bundled c-ares.

2f83613021-Aug-2014 Saúl Ibarra Corretgé

test: fix watcher_cross_stop on Windows

All send callbacks are not necessarily called on the same loop iteration
as the data is received.

a87619ce21-Aug-2014 Saúl Ibarra Corretgé

unix, windows: move includes for EAI constants

76cd676821-Aug-2014 Saúl Ibarra Corretgé

unix: fix exposing EAI_* glibc-isms

d5e6f43721-Aug-2014 Andrius Bentkus

unix: fix tcp write after bad connect freezing

If the connect wouldn't go off (no such tcp remote or any other failure),
the subsequent writes made would not be called. Now we call the w

unix: fix tcp write after bad connect freezing

If the connect wouldn't go off (no such tcp remote or any other failure),
the subsequent writes made would not be called. Now we call the writes
in the queue with ECANCELED if the connect fails.

Fix #1432

show more ...

a4f0350419-Aug-2014 Timothy J Fontaine

Now working on v0.11.30

35451fed19-Aug-2014 Timothy J Fontaine

2014.08.20, Version 0.11.29 (Unstable)

Changes since version 0.11.28:

* windows: make uv_read_stop immediately stop reading (Jameson Nash)

* windows: fix uv__getaddrinfo_tr

2014.08.20, Version 0.11.29 (Unstable)

Changes since version 0.11.28:

* windows: make uv_read_stop immediately stop reading (Jameson Nash)

* windows: fix uv__getaddrinfo_translate_error (Alexis Campailla)

* netbsd: fix build (Saúl Ibarra Corretgé)

* unix, windows: add uv_recv_buffer_size and uv_send_buffer_size
(Andrius Bentkus)

* windows: add support for UNC paths on uv_spawn (Paul Goldsmith)

* windows: replace use of inet_addr with uv_inet_pton (Saúl Ibarra
Corretgé)

* unix: replace some asserts with returning errors (Andrius Bentkus)

* windows: use OpenBSD implementation for uv_fs_mkdtemp (Pavel Platto)

* windows: fix GetNameInfoW error handling (Alexis Campailla)

* fs: introduce uv_readdir_next() and report types (Fedor Indutny)

* fs: extend reported types in uv_fs_readdir_next (Saúl Ibarra Corretgé)

* unix: read on stream even when UV__POLLHUP set. (Julien Gilli)

show more ...

1552184214-Aug-2014 Julien Gilli

unix: read on stream even when UV__POLLHUP set.

This fixes a SmartOS specific issue that happens when reading from
a stream that is the reading end of a pipe that has been closed by

unix: read on stream even when UV__POLLHUP set.

This fixes a SmartOS specific issue that happens when reading from
a stream that is the reading end of a pipe that has been closed by
the parent process.

In this case, a UV__POLLHUP event would be set on the stream and would
prevent the event loop from closing it. As a result, the event loop
would think there are stil handles open, and leave the process
hanging.

Fixes #1419.

show more ...

fdbc856718-Aug-2014 Saúl Ibarra Corretgé

unix: fix colliding flag value

Fixes #1425

df8ab50714-Aug-2014 Saúl Ibarra Corretgé

fs: extend reported types in uv_fs_readdir_next

Support all possible types on Unix, and files, directories and links on
Windows. Some systems (hello SunOS!) don't have the d_type field

fs: extend reported types in uv_fs_readdir_next

Support all possible types on Unix, and files, directories and links on
Windows. Some systems (hello SunOS!) don't have the d_type field on struct
dirent, so mark them as UV_DIRENT_UNKNOWN.

show more ...

ab2c442513-Aug-2014 Fedor Indutny

fs: introduce uv_readdir_next() and report types

Introduce:

int uv_fs_readdir_next(uv_fs_t* req, uv_dirent_t* ent);

`uv_fs_readdir()` is not returning a file names list

fs: introduce uv_readdir_next() and report types

Introduce:

int uv_fs_readdir_next(uv_fs_t* req, uv_dirent_t* ent);

`uv_fs_readdir()` is not returning a file names list in `req->ptr`
anymore, the proper way to gather them is to call `uv_fs_readdir_next()`
in a callback.

show more ...

7bdcf3dc12-Aug-2014 Alexis Campailla

windows: fix GetNameInfoW error handling

GetNameInfoW return non-zero on error, and not vice versa.

a669f21b07-Aug-2014 Pavel Platto

windows: use OpenBSD implementation for uv_fs_mkdtemp

875814ad14-Jul-2014 Andrius Bentkus

unix: replace some asserts with returning errors

b53aeb4911-Aug-2014 Saúl Ibarra Corretgé

windows: replace use of inet_addr with uv_inet_pton

Fixes a compilation warning with Visual Studio 2013.

4c90cc8e10-Aug-2014 Leonard Hecker

unix: fix typedef of uv_buf_t

Typedefs of unnamed structs cannot be forward declared.
Giving the uv_buf_t struct a name makes forward declarations possible.

ca4741b410-Aug-2014 huxingyi

windows: fix build on MinGW

09cb5b5310-Aug-2014 Saúl Ibarra Corretgé

test: fix spawn_reads_child_path when using autoconf

Don't hardcode the name of the executable, take it from the exepath.

Fixes #1407

1...<<101102103104105106107108109110>>...218