Searched refs:protocol (Results 1 – 10 of 10) sorted by relevance
/libuv/docs/src/ |
H A D | errors.rst | 92 resolved protocol is unknown 224 protocol not available 268 protocol error 272 protocol not supported 276 protocol wrong type for socket 344 protocol driver not attached
|
H A D | tcp.rst | 175 .. c:function:: int uv_socketpair(int type, int protocol, uv_os_sock_t socket_vector[2], int flags0…
|
/libuv/src/unix/ |
H A D | tcp.c | 630 int uv_socketpair(int type, int protocol, uv_os_sock_t fds[2], int flags0, int flags1) { in uv_socketpair() argument 640 if (socketpair(AF_UNIX, flags, protocol, temp)) in uv_socketpair() 649 if (socketpair(AF_UNIX, type, protocol, temp)) in uv_socketpair()
|
H A D | internal.h | 253 int uv__socket(int domain, int type, int protocol);
|
H A D | core.c | 504 int uv__socket(int domain, int type, int protocol) { in uv__socket() argument 509 sockfd = socket(domain, type | SOCK_NONBLOCK | SOCK_CLOEXEC, protocol); in uv__socket() 517 sockfd = socket(domain, type, protocol); in uv__socket()
|
/libuv/ |
H A D | LINKS.md | 3 …ithub.com/BeamMW/beam): A scalable, confidential cryptocurrency based on the Mimblewimble protocol. 11 …-For-IoT](https://github.com/intel/dps-for-iot/wiki): Fully distributed publish/subscribe protocol.
|
H A D | ChangeLog | 2568 * win,pipe: restore compatibility with the old IPC framing protocol (Bert
|
/libuv/src/win/ |
H A D | tcp.c | 1567 int uv_socketpair(int type, int protocol, uv_os_sock_t fds[2], int flags0, int flags1) { in uv_socketpair() argument 1587 server = WSASocketW(AF_INET, type, protocol, NULL, 0, in uv_socketpair() 1603 client0 = WSASocketW(AF_INET, type, protocol, NULL, 0, client0_flags); in uv_socketpair() 1610 client1 = WSASocketW(AF_INET, type, protocol, NULL, 0, client1_flags); in uv_socketpair()
|
/libuv/docs/src/guide/ |
H A D | networking.rst | 21 TCP is a connection oriented, stream protocol and is therefore based on the
|
/libuv/include/ |
H A D | uv.h | 516 int protocol,
|
Completed in 43 milliseconds