History log of /libuv/ (Results 2626 – 2650 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
386d214107-May-2014 Saúl Ibarra Corretgé

unix, windows: be consistent when binding implictly in UDP

Only these functions will trigger an implicit binding of a UDP handle:
- uv_udp_send
- uv_udp_recv_start
- uv_udp_set_m

unix, windows: be consistent when binding implictly in UDP

Only these functions will trigger an implicit binding of a UDP handle:
- uv_udp_send
- uv_udp_recv_start
- uv_udp_set_membership

All other functions will return UV_EBADF in case the socket was not
bound.

Note: currently the socket is created and bound at the same time. This
may change in the future.

show more ...

fa0e1e5008-May-2014 Saúl Ibarra Corretgé

unix, windows: remove unneeded define

9f51f26e07-May-2014 Saúl Ibarra Corretgé

unix: fix handling error on UDP socket creation

e56717ae21-Apr-2014 JD Ballard

windows: add invert ANSI (7 / 27) emulation

21b1b87d30-Apr-2014 JD Ballard

windows: add VT100 codes ?25l and ?25h

3259710030-Apr-2014 Trevor Norris

thread: add uv_thread_cb typedef

To keep with convention, add a typedef for the function called that
initializes the new thread.

Signed-off-by: Fedor Indutny <fedor@indutny.com>

4f8d4a0101-May-2014 Timothy J Fontaine

Now working on v0.10.28

6e24ce2301-May-2014 Timothy J Fontaine

2014.05.02, Version 0.10.27 (Stable)

Changes since version 0.10.26:

* windows: fix console signal handler refcount (Saúl Ibarra Corretgé)

* win: always leave crit section i

2014.05.02, Version 0.10.27 (Stable)

Changes since version 0.10.26:

* windows: fix console signal handler refcount (Saúl Ibarra Corretgé)

* win: always leave crit section in get_proc_title (Fedor Indutny)

show more ...

b5548f1801-May-2014 Timothy J Fontaine

Now working on v0.11.26

2acd544c01-May-2014 Timothy J Fontaine

2014.05.02, Version 0.11.25 (Unstable)

Changes since version 0.11.24:

* osx: pass const handle pointer to uv___stream_fd (Chernyshev
Viacheslav)

* unix, windows: pass

2014.05.02, Version 0.11.25 (Unstable)

Changes since version 0.11.24:

* osx: pass const handle pointer to uv___stream_fd (Chernyshev
Viacheslav)

* unix, windows: pass const handle ptr to uv_tcp_get*name (Chernyshev
Viacheslav)

* common: pass const sockaddr ptr to uv_ip*_name (Chernyshev Viacheslav)

* unix, windows: validate flags on uv_udp|tcp_bind (Saúl Ibarra
Corretgé)

* unix: handle case when addr is not initialized after recvmsg (Saúl
Ibarra Corretgé)

* unix, windows: uv_now constness (Rasmus Pedersen)

show more ...

87ae69b628-Apr-2014 Rasmus Christian Pedersen

unix, windows: uv_now constness

uv_now doesnt require modification of uv_loop_t as such argument is
changed to a const uv_loop_t* as this more in spirit with remaining
API in libuv.

4d905fbe22-Apr-2014 Trevor Norris

test: close stream immediately on error

If there is an error in the uv_read_cb, close the uv_stream_t
immediately instead of waiting until the uv_write_cb, and only close the
stream

test: close stream immediately on error

If there is an error in the uv_read_cb, close the uv_stream_t
immediately instead of waiting until the uv_write_cb, and only close the
stream in after_write() if it hasn't been closed already.

show more ...

76eb751823-Apr-2014 Saúl Ibarra Corretgé

doc: clarify what the addr argument of uv_udp_recv_cb contains

f55b853b23-Apr-2014 Saúl Ibarra Corretgé

unix: handle case when addr is not initialized after recvmsg

If the handle was opened using `uv_udp_open` ift's possible that the
kernel doesn't fill in the msg_name field, so return NUL

unix: handle case when addr is not initialized after recvmsg

If the handle was opened using `uv_udp_open` ift's possible that the
kernel doesn't fill in the msg_name field, so return NULL as the address
in that case.

fixes #1252

show more ...

fc5f11bf23-Apr-2014 Stephen von Takach

windows: fix build error

Previously using Windows DevKit 8.1
`tcp.c(250): error C2275: 'SOCKET' : illegal use of this type as an
expression`

9b4f2b8422-Apr-2014 Saúl Ibarra Corretgé

unix, windows: validate flags on uv_udp|tcp_bind

fixes #1247

d86d866322-Apr-2014 Saúl Ibarra Corretgé

doc: clarify uv_try_write return values

20d092ed17-Apr-2014 Chernyshev Viacheslav

common: pass const sockaddr ptr to uv_ip*_name

uv_ip4_name and uv_ip6_name do not modify passed sockaddr pointer,
so there is no need to keep this parameter non-const.

886e2bcd17-Apr-2014 Chernyshev Viacheslav

unix, windows: pass const handle ptr to uv_tcp_get*name

uv_tcp_getsockname and uv_tcp_getpeername do not modify passed handle
pointer, so there is no need to keep this parameter non-cons

unix, windows: pass const handle ptr to uv_tcp_get*name

uv_tcp_getsockname and uv_tcp_getpeername do not modify passed handle
pointer, so there is no need to keep this parameter non-const.

show more ...

4018f72617-Apr-2014 Chernyshev Viacheslav

osx: pass const handle pointer to uv___stream_fd

uv___stream_fd does not modify passed parameter, so non-const
pointer is not required here.

8514c1c117-Apr-2014 Saúl Ibarra Corretgé

authors: fix name

cd6e74dd16-Apr-2014 Rasmus Pedersen

test: fix compilation warnings with VC++

C6011 and C4244

f212ceff14-Apr-2014 Trevor Norris

include: reorder UV_HANDLE_PRIVATE_FIELDS

The fields for UV_HANDLE_PRIVATE_FIELDS in uv-win.h and uv-unix.h are
the same, but in different order. Simply swap them so uv_handle_t are

include: reorder UV_HANDLE_PRIVATE_FIELDS

The fields for UV_HANDLE_PRIVATE_FIELDS in uv-win.h and uv-unix.h are
the same, but in different order. Simply swap them so uv_handle_t are
the same on both platforms.

Signed-off-by: Fedor Indutny <fedor@indutny.com>

show more ...

4a67d8cc14-Apr-2014 Timothy J Fontaine

build: add vc-set-2012 label

1daff47a14-Apr-2014 Timothy J Fontaine

Now working on v0.11.25

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