386d2141 | 07-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 ...
|
fa0e1e50 | 08-May-2014 |
Saúl Ibarra Corretgé |
unix, windows: remove unneeded define |
9f51f26e | 07-May-2014 |
Saúl Ibarra Corretgé |
unix: fix handling error on UDP socket creation |
e56717ae | 21-Apr-2014 |
JD Ballard |
windows: add invert ANSI (7 / 27) emulation |
21b1b87d | 30-Apr-2014 |
JD Ballard |
windows: add VT100 codes ?25l and ?25h |
32597100 | 30-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> |
4f8d4a01 | 01-May-2014 |
Timothy J Fontaine |
Now working on v0.10.28 |
6e24ce23 | 01-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 ...
|
b5548f18 | 01-May-2014 |
Timothy J Fontaine |
Now working on v0.11.26 |
2acd544c | 01-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 ...
|
87ae69b6 | 28-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. |
4d905fbe | 22-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 ...
|
76eb7518 | 23-Apr-2014 |
Saúl Ibarra Corretgé |
doc: clarify what the addr argument of uv_udp_recv_cb contains |
f55b853b | 23-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 ...
|
fc5f11bf | 23-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` |
9b4f2b84 | 22-Apr-2014 |
Saúl Ibarra Corretgé |
unix, windows: validate flags on uv_udp|tcp_bind fixes #1247 |
d86d8663 | 22-Apr-2014 |
Saúl Ibarra Corretgé |
doc: clarify uv_try_write return values |
20d092ed | 17-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. |
886e2bcd | 17-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 ...
|
4018f726 | 17-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. |
8514c1c1 | 17-Apr-2014 |
Saúl Ibarra Corretgé |
authors: fix name |
cd6e74dd | 16-Apr-2014 |
Rasmus Pedersen |
test: fix compilation warnings with VC++ C6011 and C4244 |
f212ceff | 14-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 ...
|
4a67d8cc | 14-Apr-2014 |
Timothy J Fontaine |
build: add vc-set-2012 label |
1daff47a | 14-Apr-2014 |
Timothy J Fontaine |
Now working on v0.11.25 |